Created
August 27, 2020 13:58
-
-
Save luckyyang/00aca32be1f7677191a960b945cb2106 to your computer and use it in GitHub Desktop.
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
// File: contracts/zeppelin/upgradable/Initializable.sol | |
pragma solidity >=0.4.24 <0.6.0; | |
/** | |
* @title Initializable | |
* | |
* @dev Helper contract to support initializer functions. To use it, replace | |
* the constructor with a function that has the `initializer` modifier. | |
* WARNING: Unlike constructors, initializer functions must be manually | |
* invoked. This applies both to deploying an Initializable contract, as well | |
* as extending an Initializable contract via inheritance. | |
* WARNING: When used with inheritance, manual care must be taken to not invoke | |
* a parent initializer twice, or ensure that all initializers are idempotent, | |
* because this is not dealt with automatically as with constructors. | |
*/ | |
contract Initializable { | |
/** | |
* @dev Indicates that the contract has been initialized. | |
*/ | |
bool private initialized; | |
/** | |
* @dev Indicates that the contract is in the process of being initialized. | |
*/ | |
bool private initializing; | |
/** | |
* @dev Modifier to use in the initializer function of a contract. | |
*/ | |
modifier initializer() { | |
require(initializing || isConstructor() || !initialized, "Contract instance is already initialized"); | |
bool isTopLevelCall = !initializing; | |
if (isTopLevelCall) { | |
initializing = true; | |
initialized = true; | |
} | |
_; | |
if (isTopLevelCall) { | |
initializing = false; | |
} | |
} | |
/// @dev Returns true if and only if the function is running in the constructor | |
function isConstructor() private view returns (bool) { | |
// extcodesize checks the size of the code stored in an address, and | |
// address returns the current address. Since the code is still not | |
// deployed when running a constructor, any checks on its code size will | |
// yield zero, making it an effective way to detect if a contract is | |
// under construction or not. | |
uint256 cs; | |
assembly { cs := extcodesize(address) } | |
return cs == 0; | |
} | |
// Reserved storage space to allow for layout changes in the future. | |
uint256[50] private ______gap; | |
} | |
// File: contracts/zeppelin/upgradable/utils/ReentrancyGuard.sol | |
pragma solidity ^0.5.2; | |
/** | |
* @title Helps contracts guard against reentrancy attacks. | |
* @author Remco Bloemen <remco@2π.com>, Eenae <[email protected]> | |
* @dev If you mark a function `nonReentrant`, you should also | |
* mark it `external`. | |
*/ | |
contract ReentrancyGuard is Initializable { | |
/// @dev counter to allow mutex lock with only one SSTORE operation | |
uint256 private _guardCounter; | |
function initialize() public initializer { | |
// The counter starts at one to prevent changing it from zero to a non-zero | |
// value, which is a more expensive operation. | |
_guardCounter = 1; | |
} | |
/** | |
* @dev Prevents a contract from calling itself, directly or indirectly. | |
* Calling a `nonReentrant` function from another `nonReentrant` | |
* function is not supported. It is possible to prevent this from happening | |
* by making the `nonReentrant` function external, and make it call a | |
* `private` function that does the actual work. | |
*/ | |
modifier nonReentrant() { | |
_guardCounter += 1; | |
uint256 localCounter = _guardCounter; | |
_; | |
require(localCounter == _guardCounter, "ReentrancyGuard: no reentrant allowed"); | |
} | |
} | |
// File: contracts/zeppelin/GSN/Context.sol | |
pragma solidity ^0.5.0; | |
/* | |
* @dev Provides information about the current execution context, including the | |
* sender of the transaction and its data. While these are generally available | |
* via msg.sender and msg.data, they should not be accessed in such a direct | |
* manner, since when dealing with GSN meta-transactions the account sending and | |
* paying for execution may not be the actual sender (as far as an application | |
* is concerned). | |
* | |
* This contract is only required for intermediate, library-like contracts. | |
*/ | |
contract Context { | |
// Empty internal constructor, to prevent people from mistakenly deploying | |
// an instance of this contract, which should be used via inheritance. | |
constructor () internal { } | |
// solhint-disable-previous-line no-empty-blocks | |
function _msgSender() internal view returns (address payable) { | |
return msg.sender; | |
} | |
function _msgData() internal view returns (bytes memory) { | |
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 | |
return msg.data; | |
} | |
} | |
// File: contracts/zeppelin/access/Roles.sol | |
pragma solidity ^0.5.0; | |
/** | |
* @title Roles | |
* @dev Library for managing addresses assigned to a Role. | |
*/ | |
library Roles { | |
struct Role { | |
mapping (address => bool) bearer; | |
} | |
/** | |
* @dev Give an account access to this role. | |
*/ | |
function add(Role storage role, address account) internal { | |
require(!has(role, account), "Roles: account already has role"); | |
role.bearer[account] = true; | |
} | |
/** | |
* @dev Remove an account's access to this role. | |
*/ | |
function remove(Role storage role, address account) internal { | |
require(has(role, account), "Roles: account doesn't have role"); | |
role.bearer[account] = false; | |
} | |
/** | |
* @dev Check if an account has this role. | |
* @return bool | |
*/ | |
function has(Role storage role, address account) internal view returns (bool) { | |
require(account != address(0), "Roles: account is the zero address"); | |
return role.bearer[account]; | |
} | |
} | |
// File: contracts/zeppelin/upgradable/access/roles/UpgradablePauserRole.sol | |
pragma solidity ^0.5.0; | |
contract UpgradablePauserRole is Initializable, Context { | |
using Roles for Roles.Role; | |
event PauserAdded(address indexed account); | |
event PauserRemoved(address indexed account); | |
Roles.Role private _pausers; | |
function initialize(address sender) public initializer { | |
if (!isPauser(sender)) { | |
_addPauser(sender); | |
} | |
} | |
modifier onlyPauser() { | |
require(isPauser(_msgSender()), "PauserRole: caller doesn't have the role"); | |
_; | |
} | |
function isPauser(address account) public view returns (bool) { | |
return _pausers.has(account); | |
} | |
function addPauser(address account) public onlyPauser { | |
_addPauser(account); | |
} | |
function renouncePauser() public { | |
_removePauser(_msgSender()); | |
} | |
function _addPauser(address account) internal { | |
_pausers.add(account); | |
emit PauserAdded(account); | |
} | |
function _removePauser(address account) internal { | |
_pausers.remove(account); | |
emit PauserRemoved(account); | |
} | |
} | |
// File: contracts/zeppelin/upgradable/lifecycle/UpgradablePausable.sol | |
pragma solidity ^0.5.0; | |
/** | |
* @dev Contract module which allows children to implement an emergency stop | |
* mechanism that can be triggered by an authorized account. | |
* | |
* This module is used through inheritance. It will make available the | |
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to | |
* the functions of your contract. Note that they will not be pausable by | |
* simply including this module, only once the modifiers are put in place. | |
*/ | |
contract UpgradablePausable is Initializable, Context, UpgradablePauserRole { | |
/** | |
* @dev Emitted when the pause is triggered by a pauser (`account`). | |
*/ | |
event Paused(address account); | |
/** | |
* @dev Emitted when the pause is lifted by a pauser (`account`). | |
*/ | |
event Unpaused(address account); | |
bool private _paused; | |
/** | |
* @dev Initializes the contract in unpaused state. Assigns the Pauser role | |
* to the deployer. | |
*/ | |
function initialize(address sender) public initializer { | |
UpgradablePauserRole.initialize(sender); | |
_paused = false; | |
} | |
/** | |
* @dev Returns true if the contract is paused, and false otherwise. | |
*/ | |
function paused() public view returns (bool) { | |
return _paused; | |
} | |
/** | |
* @dev Modifier to make a function callable only when the contract is not paused. | |
*/ | |
modifier whenNotPaused() { | |
require(!_paused, "Pausable: paused"); | |
_; | |
} | |
/** | |
* @dev Modifier to make a function callable only when the contract is paused. | |
*/ | |
modifier whenPaused() { | |
require(_paused, "Pausable: not paused"); | |
_; | |
} | |
/** | |
* @dev Called by a pauser to pause, triggers stopped state. | |
*/ | |
function pause() public onlyPauser whenNotPaused { | |
_paused = true; | |
emit Paused(_msgSender()); | |
} | |
/** | |
* @dev Called by a pauser to unpause, returns to normal state. | |
*/ | |
function unpause() public onlyPauser whenPaused { | |
_paused = false; | |
emit Unpaused(_msgSender()); | |
} | |
} | |
// File: contracts/zeppelin/upgradable/ownership/UpgradableOwnable.sol | |
pragma solidity ^0.5.0; | |
/** | |
* @dev Contract module which provides a basic access control mechanism, where | |
* there is an account (an owner) that can be granted exclusive access to | |
* specific functions. | |
* | |
* This module is used through inheritance. It will make available the modifier | |
* `onlyOwner`, which can be aplied to your functions to restrict their use to | |
* the owner. | |
*/ | |
contract UpgradableOwnable is Initializable, Context { | |
address private _owner; | |
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); | |
/** | |
* @dev Initializes the contract setting the deployer as the initial owner. | |
*/ | |
function initialize(address sender) public initializer { | |
_owner = sender; | |
emit OwnershipTransferred(address(0), _owner); | |
} | |
/** | |
* @dev Returns the address of the current owner. | |
*/ | |
function owner() public view returns (address) { | |
return _owner; | |
} | |
/** | |
* @dev Throws if called by any account other than the owner. | |
*/ | |
modifier onlyOwner() { | |
require(isOwner(), "Ownable: caller is not the owner"); | |
_; | |
} | |
/** | |
* @dev Returns true if the caller is the current owner. | |
*/ | |
function isOwner() public view returns (bool) { | |
return _msgSender() == _owner; | |
} | |
/** | |
* @dev Leaves the contract without owner. It will not be possible to call | |
* `onlyOwner` functions anymore. Can only be called by the current owner. | |
* | |
* > Note: Renouncing ownership will leave the contract without an owner, | |
* thereby removing any functionality that is only available to the owner. | |
*/ | |
function renounceOwnership() public onlyOwner { | |
emit OwnershipTransferred(_owner, address(0)); | |
_owner = address(0); | |
} | |
/** | |
* @dev Transfers ownership of the contract to a new account (`newOwner`). | |
* Can only be called by the current owner. | |
*/ | |
function transferOwnership(address newOwner) public onlyOwner { | |
_transferOwnership(newOwner); | |
} | |
/** | |
* @dev Transfers ownership of the contract to a new account (`newOwner`). | |
*/ | |
function _transferOwnership(address newOwner) internal { | |
require(newOwner != address(0), "Ownable: new owner is zero address"); | |
emit OwnershipTransferred(_owner, newOwner); | |
_owner = newOwner; | |
} | |
} | |
// File: contracts/zeppelin/introspection/IERC1820Registry.sol | |
pragma solidity ^0.5.0; | |
/** | |
* @dev Interface of the global ERC1820 Registry, as defined in the | |
* https://eips.ethereum.org/EIPS/eip-1820[EIP]. Accounts may register | |
* implementers for interfaces in this registry, as well as query support. | |
* | |
* Implementers may be shared by multiple accounts, and can also implement more | |
* than a single interface for each account. Contracts can implement interfaces | |
* for themselves, but externally-owned accounts (EOA) must delegate this to a | |
* contract. | |
* | |
* {IERC165} interfaces can also be queried via the registry. | |
* | |
* For an in-depth explanation and source code analysis, see the EIP text. | |
*/ | |
interface IERC1820Registry { | |
/** | |
* @dev Sets `newManager` as the manager for `account`. A manager of an | |
* account is able to set interface implementers for it. | |
* | |
* By default, each account is its own manager. Passing a value of `0x0` in | |
* `newManager` will reset the manager to this initial state. | |
* | |
* Emits a {ManagerChanged} event. | |
* | |
* Requirements: | |
* | |
* - the caller must be the current manager for `account`. | |
*/ | |
function setManager(address account, address newManager) external; | |
/** | |
* @dev Returns the manager for `account`. | |
* | |
* See {setManager}. | |
*/ | |
function getManager(address account) external view returns (address); | |
/** | |
* @dev Sets the `implementer` contract as `account`'s implementer for | |
* `interfaceHash`. | |
* | |
* `account` being the zero address is an alias for the caller's address. | |
* The zero address can also be used in `implementer` to remove an old one. | |
* | |
* See {interfaceHash} to learn how these are created. | |
* | |
* Emits an {InterfaceImplementerSet} event. | |
* | |
* Requirements: | |
* | |
* - the caller must be the current manager for `account`. | |
* - `interfaceHash` must not be an {IERC165} interface id (i.e. it must not | |
* end in 28 zeroes). | |
* - `implementer` must implement {IERC1820Implementer} and return true when | |
* queried for support, unless `implementer` is the caller. See | |
* {IERC1820Implementer-canImplementInterfaceForAddress}. | |
*/ | |
function setInterfaceImplementer(address account, bytes32 interfaceHash, address implementer) external; | |
/** | |
* @dev Returns the implementer of `interfaceHash` for `account`. If no such | |
* implementer is registered, returns the zero address. | |
* | |
* If `interfaceHash` is an {IERC165} interface id (i.e. it ends with 28 | |
* zeroes), `account` will be queried for support of it. | |
* | |
* `account` being the zero address is an alias for the caller's address. | |
*/ | |
function getInterfaceImplementer(address account, bytes32 interfaceHash) external view returns (address); | |
/** | |
* @dev Returns the interface hash for an `interfaceName`, as defined in the | |
* corresponding | |
* https://eips.ethereum.org/EIPS/eip-1820#interface-name[section of the EIP]. | |
*/ | |
function interfaceHash(string calldata interfaceName) external pure returns (bytes32); | |
/** | |
* @notice Updates the cache with whether the contract implements an ERC165 interface or not. | |
* @param account Address of the contract for which to update the cache. | |
* @param interfaceId ERC165 interface for which to update the cache. | |
*/ | |
function updateERC165Cache(address account, bytes4 interfaceId) external; | |
/** | |
* @notice Checks whether a contract implements an ERC165 interface or not. | |
* If the result is not cached a direct lookup on the contract address is performed. | |
* If the result is not cached or the cached value is out-of-date, the cache MUST be updated manually by calling | |
* {updateERC165Cache} with the contract address. | |
* @param account Address of the contract to check. | |
* @param interfaceId ERC165 interface to check. | |
* @return True if `account` implements `interfaceId`, false otherwise. | |
*/ | |
function implementsERC165Interface(address account, bytes4 interfaceId) external view returns (bool); | |
/** | |
* @notice Checks whether a contract implements an ERC165 interface or not without using nor updating the cache. | |
* @param account Address of the contract to check. | |
* @param interfaceId ERC165 interface to check. | |
* @return True if `account` implements `interfaceId`, false otherwise. | |
*/ | |
function implementsERC165InterfaceNoCache(address account, bytes4 interfaceId) external view returns (bool); | |
event InterfaceImplementerSet(address indexed account, bytes32 indexed interfaceHash, address indexed implementer); | |
event ManagerChanged(address indexed account, address indexed newManager); | |
} | |
// File: contracts/zeppelin/token/ERC777/IERC777Recipient.sol | |
pragma solidity ^0.5.0; | |
/** | |
* @dev Interface of the ERC777TokensRecipient standard as defined in the EIP. | |
* | |
* Accounts can be notified of `IERC777` tokens being sent to them by having a | |
* contract implement this interface (contract holders can be their own | |
* implementer) and registering it on the | |
* [ERC1820 global registry](https://eips.ethereum.org/EIPS/eip-1820). | |
* | |
* See `IERC1820Registry` and `ERC1820Implementer`. | |
*/ | |
interface IERC777Recipient { | |
/** | |
* @dev Called by an `IERC777` token contract whenever tokens are being | |
* moved or created into a registered account (`to`). The type of operation | |
* is conveyed by `from` being the zero address or not. | |
* | |
* This call occurs _after_ the token contract's state is updated, so | |
* `IERC777.balanceOf`, etc., can be used to query the post-operation state. | |
* | |
* This function may revert to prevent the operation from being executed. | |
*/ | |
function tokensReceived( | |
address operator, | |
address from, | |
address to, | |
uint amount, | |
bytes calldata userData, | |
bytes calldata operatorData | |
) external; | |
} | |
// File: contracts/zeppelin/token/ERC20/IERC20.sol | |
pragma solidity ^0.5.0; | |
/** | |
* @dev Interface of the ERC20 standard as defined in the EIP. Does not include | |
* the optional functions; to access them see {ERC20Detailed}. | |
*/ | |
interface IERC20 { | |
/** | |
* @dev Returns the amount of tokens in existence. | |
*/ | |
function totalSupply() external view returns (uint256); | |
/** | |
* @dev Returns the amount of tokens owned by `account`. | |
*/ | |
function balanceOf(address account) external view returns (uint256); | |
/** | |
* @dev Moves `amount` tokens from the caller's account to `recipient`. | |
* | |
* Returns a boolean value indicating whether the operation succeeded. | |
* | |
* Emits a {Transfer} event. | |
*/ | |
function transfer(address recipient, uint256 amount) external returns (bool); | |
/** | |
* @dev Returns the remaining number of tokens that `spender` will be | |
* allowed to spend on behalf of `owner` through {transferFrom}. This is | |
* zero by default. | |
* | |
* This value changes when {approve} or {transferFrom} are called. | |
*/ | |
function allowance(address owner, address spender) external view returns (uint256); | |
/** | |
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens. | |
* | |
* Returns a boolean value indicating whether the operation succeeded. | |
* | |
* IMPORTANT: Beware that changing an allowance with this method brings the risk | |
* that someone may use both the old and the new allowance by unfortunate | |
* transaction ordering. One possible solution to mitigate this race | |
* condition is to first reduce the spender's allowance to 0 and set the | |
* desired value afterwards: | |
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 | |
* | |
* Emits an {Approval} event. | |
*/ | |
function approve(address spender, uint256 amount) external returns (bool); | |
/** | |
* @dev Moves `amount` tokens from `sender` to `recipient` using the | |
* allowance mechanism. `amount` is then deducted from the caller's | |
* allowance. | |
* | |
* Returns a boolean value indicating whether the operation succeeded. | |
* | |
* Emits a {Transfer} event. | |
*/ | |
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); | |
/** | |
* @dev Emitted when `value` tokens are moved from one account (`from`) to | |
* another (`to`). | |
* | |
* Note that `value` may be zero. | |
*/ | |
event Transfer(address indexed from, address indexed to, uint256 value); | |
/** | |
* @dev Emitted when the allowance of a `spender` for an `owner` is set by | |
* a call to {approve}. `value` is the new allowance. | |
*/ | |
event Approval(address indexed owner, address indexed spender, uint256 value); | |
} | |
// File: contracts/zeppelin/math/SafeMath.sol | |
pragma solidity ^0.5.0; | |
/** | |
* @dev Wrappers over Solidity's arithmetic operations with added overflow | |
* checks. | |
* | |
* Arithmetic operations in Solidity wrap on overflow. This can easily result | |
* in bugs, because programmers usually assume that an overflow raises an | |
* error, which is the standard behavior in high level programming languages. | |
* `SafeMath` restores this intuition by reverting the transaction when an | |
* operation overflows. | |
* | |
* Using this library instead of the unchecked operations eliminates an entire | |
* class of bugs, so it's recommended to use it always. | |
*/ | |
library SafeMath { | |
/** | |
* @dev Returns the addition of two unsigned integers, reverting on | |
* overflow. | |
* | |
* Counterpart to Solidity's `+` operator. | |
* | |
* Requirements: | |
* - Addition cannot overflow. | |
*/ | |
function add(uint256 a, uint256 b) internal pure returns (uint256) { | |
uint256 c = a + b; | |
require(c >= a, "SafeMath: addition overflow"); | |
return c; | |
} | |
/** | |
* @dev Returns the subtraction of two unsigned integers, reverting on | |
* overflow (when the result is negative). | |
* | |
* Counterpart to Solidity's `-` operator. | |
* | |
* Requirements: | |
* - Subtraction cannot overflow. | |
*/ | |
function sub(uint256 a, uint256 b) internal pure returns (uint256) { | |
return sub(a, b, "SafeMath: subtraction overflow"); | |
} | |
/** | |
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on | |
* overflow (when the result is negative). | |
* | |
* Counterpart to Solidity's `-` operator. | |
* | |
* Requirements: | |
* - Subtraction cannot overflow. | |
* | |
* _Available since v2.4.0._ | |
*/ | |
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { | |
require(b <= a, errorMessage); | |
uint256 c = a - b; | |
return c; | |
} | |
/** | |
* @dev Returns the multiplication of two unsigned integers, reverting on | |
* overflow. | |
* | |
* Counterpart to Solidity's `*` operator. | |
* | |
* Requirements: | |
* - Multiplication cannot overflow. | |
*/ | |
function mul(uint256 a, uint256 b) internal pure returns (uint256) { | |
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the | |
// benefit is lost if 'b' is also tested. | |
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 | |
if (a == 0) { | |
return 0; | |
} | |
uint256 c = a * b; | |
require(c / a == b, "SafeMath: multiplication overflow"); | |
return c; | |
} | |
/** | |
* @dev Returns the integer division of two unsigned integers. Reverts on | |
* division by zero. The result is rounded towards zero. | |
* | |
* Counterpart to Solidity's `/` operator. Note: this function uses a | |
* `revert` opcode (which leaves remaining gas untouched) while Solidity | |
* uses an invalid opcode to revert (consuming all remaining gas). | |
* | |
* Requirements: | |
* - The divisor cannot be zero. | |
*/ | |
function div(uint256 a, uint256 b) internal pure returns (uint256) { | |
return div(a, b, "SafeMath: division by zero"); | |
} | |
/** | |
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on | |
* division by zero. The result is rounded towards zero. | |
* | |
* Counterpart to Solidity's `/` operator. Note: this function uses a | |
* `revert` opcode (which leaves remaining gas untouched) while Solidity | |
* uses an invalid opcode to revert (consuming all remaining gas). | |
* | |
* Requirements: | |
* - The divisor cannot be zero. | |
* | |
* _Available since v2.4.0._ | |
*/ | |
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { | |
// Solidity only automatically asserts when dividing by 0 | |
require(b > 0, errorMessage); | |
uint256 c = a / b; | |
// assert(a == b * c + a % b); // There is no case in which this doesn't hold | |
return c; | |
} | |
/** | |
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), | |
* Reverts when dividing by zero. | |
* | |
* Counterpart to Solidity's `%` operator. This function uses a `revert` | |
* opcode (which leaves remaining gas untouched) while Solidity uses an | |
* invalid opcode to revert (consuming all remaining gas). | |
* | |
* Requirements: | |
* - The divisor cannot be zero. | |
*/ | |
function mod(uint256 a, uint256 b) internal pure returns (uint256) { | |
return mod(a, b, "SafeMath: modulo by zero"); | |
} | |
/** | |
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), | |
* Reverts with custom message when dividing by zero. | |
* | |
* Counterpart to Solidity's `%` operator. This function uses a `revert` | |
* opcode (which leaves remaining gas untouched) while Solidity uses an | |
* invalid opcode to revert (consuming all remaining gas). | |
* | |
* Requirements: | |
* - The divisor cannot be zero. | |
* | |
* _Available since v2.4.0._ | |
*/ | |
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { | |
require(b != 0, errorMessage); | |
return a % b; | |
} | |
} | |
// File: contracts/zeppelin/utils/Address.sol | |
pragma solidity ^0.5.0; | |
/** | |
* @dev Collection of functions related to the address type, | |
*/ | |
library Address { | |
/** | |
* @dev Returns true if `account` is a contract. | |
* | |
* [IMPORTANT] | |
* ==== | |
* It is unsafe to assume that an address for which this function returns | |
* false is an externally-owned account (EOA) and not a contract. | |
* | |
* Among others, `isContract` will return false for the following | |
* types of addresses: | |
* | |
* - an externally-owned account | |
* - a contract in construction | |
* - an address where a contract will be created | |
* - an address where a contract lived, but was destroyed | |
* ==== | |
*/ | |
function isContract(address account) internal view returns (bool) { | |
// According to EIP-1052, 0x0 is the value returned for not-yet created accounts | |
// and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned | |
// for accounts without code, i.e. `keccak256('')` | |
bytes32 codehash; | |
bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; | |
// solhint-disable-next-line no-inline-assembly | |
assembly { codehash := extcodehash(account) } | |
return (codehash != accountHash && codehash != 0x0); | |
} | |
} | |
// File: contracts/zeppelin/token/ERC20/SafeERC20.sol | |
pragma solidity ^0.5.0; | |
/** | |
* @title SafeERC20 | |
* @dev Wrappers around ERC20 operations that throw on failure (when the token | |
* contract returns false). Tokens that return no value (and instead revert or | |
* throw on failure) are also supported, non-reverting calls are assumed to be | |
* successful. | |
* To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract, | |
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc. | |
*/ | |
library SafeERC20 { | |
using SafeMath for uint256; | |
using Address for address; | |
function safeTransfer(IERC20 token, address to, uint256 value) internal { | |
callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); | |
} | |
function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { | |
callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); | |
} | |
function safeApprove(IERC20 token, address spender, uint256 value) internal { | |
// safeApprove should only be called when setting an initial allowance, | |
// or when resetting it to zero. To increase and decrease it, use | |
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance' | |
// solhint-disable-next-line max-line-length | |
require((value == 0) || (token.allowance(address(this), spender) == 0), | |
"SafeERC20: approve non-zero to non-zero allowance" | |
); | |
callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); | |
} | |
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { | |
uint256 newAllowance = token.allowance(address(this), spender).add(value); | |
callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); | |
} | |
function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { | |
uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); | |
callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); | |
} | |
/** | |
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement | |
* on the return value: the return value is optional (but if data is returned, it must not be false). | |
* @param token The token targeted by the call. | |
* @param data The call data (encoded using abi.encode or one of its variants). | |
*/ | |
function callOptionalReturn(IERC20 token, bytes memory data) private { | |
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since | |
// we're implementing it ourselves. | |
// A Solidity high level call has three parts: | |
// 1. The target address is checked to verify it contains contract code | |
// 2. The call itself is made, and success asserted | |
// 3. The return value is decoded, which in turn checks the size of the returned data. | |
// solhint-disable-next-line max-line-length | |
require(address(token).isContract(), "SafeERC20: call to non-contract"); | |
// solhint-disable-next-line avoid-low-level-calls | |
(bool success, bytes memory returndata) = address(token).call(data); | |
require(success, "SafeERC20: low-level call failed"); | |
if (returndata.length > 0) { // Return data is optional | |
// solhint-disable-next-line max-line-length | |
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); | |
} | |
} | |
} | |
// File: contracts/zeppelin/token/ERC20/ERC20Detailed.sol | |
pragma solidity ^0.5.0; | |
/** | |
* @dev Optional functions from the ERC20 standard. | |
*/ | |
contract ERC20Detailed is IERC20 { | |
string private _name; | |
string private _symbol; | |
uint8 private _decimals; | |
/** | |
* @dev Sets the values for `name`, `symbol`, and `decimals`. All three of | |
* these values are immutable: they can only be set once during | |
* construction. | |
*/ | |
constructor (string memory name, string memory symbol, uint8 decimals) public { | |
_name = name; | |
_symbol = symbol; | |
_decimals = decimals; | |
} | |
/** | |
* @dev Returns the name of the token. | |
*/ | |
function name() public view returns (string memory) { | |
return _name; | |
} | |
/** | |
* @dev Returns the symbol of the token, usually a shorter version of the | |
* name. | |
*/ | |
function symbol() public view returns (string memory) { | |
return _symbol; | |
} | |
/** | |
* @dev Returns the number of decimals used to get its user representation. | |
* For example, if `decimals` equals `2`, a balance of `505` tokens should | |
* be displayed to a user as `5,05` (`505 / 10 ** 2`). | |
* | |
* Tokens usually opt for a value of 18, imitating the relationship between | |
* Ether and Wei. | |
* | |
* NOTE: This information is only used for _display_ purposes: it in | |
* no way affects any of the arithmetic of the contract, including | |
* {IERC20-balanceOf} and {IERC20-transfer}. | |
*/ | |
function decimals() public view returns (uint8) { | |
return _decimals; | |
} | |
} | |
// File: contracts/IBridge_v1.sol | |
pragma solidity ^0.5.0; | |
interface IBridge_v1 { | |
function version() external pure returns (string memory); | |
function getFeePercentage() external view returns(uint); | |
function calcMaxWithdraw() external view returns (uint); | |
/** | |
* ERC-20 tokens approve and transferFrom pattern | |
* See https://eips.ethereum.org/EIPS/eip-20#transferfrom | |
*/ | |
function receiveTokens(address tokenToUse, uint256 amount) external returns(bool); | |
/** | |
* ERC-777 tokensReceived hook allows to send tokens to a contract and notify it in a single transaction | |
* See https://eips.ethereum.org/EIPS/eip-777#motivation for details | |
*/ | |
function tokensReceived ( | |
address operator, | |
address from, | |
address to, | |
uint amount, | |
bytes calldata userData, | |
bytes calldata operatorData | |
) external; | |
/** | |
* Accepts the transaction from the other chain that was voted and sent by the federation contract | |
*/ | |
function acceptTransfer( | |
address originalTokenAddress, | |
address receiver, | |
uint256 amount, | |
string calldata symbol, | |
bytes32 blockHash, | |
bytes32 transactionHash, | |
uint32 logIndex, | |
uint8 decimals, | |
uint256 granularity | |
) external returns(bool); | |
event Cross(address indexed _tokenAddress, address indexed _to, uint256 _amount, string _symbol, bytes _userData, | |
uint8 _decimals, uint256 _granularity); | |
event NewSideToken(address indexed _newSideTokenAddress, address indexed _originalTokenAddress, string _newSymbol, uint256 _granularity); | |
event AcceptedCrossTransfer(address indexed _tokenAddress, address indexed _to, uint256 _amount, uint8 _decimals, uint256 _granularity, | |
uint256 _formattedAmount, uint8 _calculatedDecimals, uint256 _calculatedGranularity); | |
event FeePercentageChanged(uint256 _amount); | |
} | |
// File: contracts/ISideToken.sol | |
pragma solidity ^0.5.0; | |
interface ISideToken { | |
function name() external view returns (string memory); | |
function symbol() external view returns (string memory); | |
function decimals() external pure returns (uint8); | |
function granularity() external view returns (uint256); | |
function burn(uint256 amount, bytes calldata data) external; | |
function mint(address account, uint256 amount, bytes calldata userData, bytes calldata operatorData) external; | |
function totalSupply() external view returns (uint256); | |
function balanceOf(address owner) external view returns (uint256); | |
function send(address recipient, uint256 amount, bytes calldata data) external; | |
function transfer(address recipient, uint256 amount) external returns (bool); | |
function allowance(address owner, address spender) external view returns (uint256); | |
function approve(address spender, uint256 amount) external returns (bool); | |
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); | |
} | |
// File: contracts/ISideTokenFactory.sol | |
pragma solidity ^0.5.0; | |
interface ISideTokenFactory { | |
function createSideToken(string calldata name, string calldata symbol, uint256 granularity) external returns(address); | |
event SideTokenCreated(address indexed sideToken, string symbol, uint256 granularity); | |
} | |
// File: contracts/zeppelin/ownership/Ownable.sol | |
pragma solidity ^0.5.0; | |
/** | |
* @dev Contract module which provides a basic access control mechanism, where | |
* there is an account (an owner) that can be granted exclusive access to | |
* specific functions. | |
* | |
* This module is used through inheritance. It will make available the modifier | |
* `onlyOwner`, which can be applied to your functions to restrict their use to | |
* the owner. | |
*/ | |
contract Ownable is Context { | |
address private _owner; | |
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); | |
/** | |
* @dev Initializes the contract setting the deployer as the initial owner. | |
*/ | |
constructor () internal { | |
_owner = _msgSender(); | |
emit OwnershipTransferred(address(0), _owner); | |
} | |
/** | |
* @dev Returns the address of the current owner. | |
*/ | |
function owner() public view returns (address) { | |
return _owner; | |
} | |
/** | |
* @dev Throws if called by any account other than the owner. | |
*/ | |
modifier onlyOwner() { | |
require(isOwner(), "Ownable: caller is not the owner"); | |
_; | |
} | |
/** | |
* @dev Returns true if the caller is the current owner. | |
*/ | |
function isOwner() public view returns (bool) { | |
return _msgSender() == _owner; | |
} | |
/** | |
* @dev Leaves the contract without owner. It will not be possible to call | |
* `onlyOwner` functions anymore. Can only be called by the current owner. | |
* | |
* NOTE: Renouncing ownership will leave the contract without an owner, | |
* thereby removing any functionality that is only available to the owner. | |
*/ | |
function renounceOwnership() public onlyOwner { | |
emit OwnershipTransferred(_owner, address(0)); | |
_owner = address(0); | |
} | |
/** | |
* @dev Transfers ownership of the contract to a new account (`newOwner`). | |
* Can only be called by the current owner. | |
*/ | |
function transferOwnership(address newOwner) public onlyOwner { | |
_transferOwnership(newOwner); | |
} | |
/** | |
* @dev Transfers ownership of the contract to a new account (`newOwner`). | |
*/ | |
function _transferOwnership(address newOwner) internal { | |
require(newOwner != address(0), "Ownable: new owner is the zero address"); | |
emit OwnershipTransferred(_owner, newOwner); | |
_owner = newOwner; | |
} | |
} | |
// File: contracts/AllowTokens.sol | |
pragma solidity >=0.4.21 <0.6.0; | |
contract AllowTokens is Ownable { | |
using SafeMath for uint256; | |
address constant private NULL_ADDRESS = address(0); | |
mapping (address => bool) public allowedTokens; | |
bool private validateAllowedTokens; | |
uint256 private maxTokensAllowed; | |
uint256 private minTokensAllowed; | |
uint256 public dailyLimit; | |
event AllowedTokenAdded(address indexed _tokenAddress); | |
event AllowedTokenRemoved(address indexed _tokenAddress); | |
event AllowedTokenValidation(bool _enabled); | |
event MaxTokensAllowedChanged(uint256 _maxTokens); | |
event MinTokensAllowedChanged(uint256 _minTokens); | |
event DailyLimitChanged(uint256 dailyLimit); | |
modifier notNull(address _address) { | |
require(_address != NULL_ADDRESS, "AllowTokens: Address cannot be empty"); | |
_; | |
} | |
constructor(address _manager) public { | |
transferOwnership(_manager); | |
validateAllowedTokens = true; | |
maxTokensAllowed = 10000 ether; | |
minTokensAllowed = 1 ether; | |
dailyLimit = 100000 ether; | |
} | |
function isValidatingAllowedTokens() external view returns(bool) { | |
return validateAllowedTokens; | |
} | |
function getMaxTokensAllowed() external view returns(uint256) { | |
return maxTokensAllowed; | |
} | |
function getMinTokensAllowed() external view returns(uint256) { | |
return minTokensAllowed; | |
} | |
function allowedTokenExist(address token) private view notNull(token) returns (bool) { | |
return allowedTokens[token]; | |
} | |
function isTokenAllowed(address token) public view notNull(token) returns (bool) { | |
if (validateAllowedTokens) { | |
return allowedTokenExist(token); | |
} | |
return true; | |
} | |
function addAllowedToken(address token) external onlyOwner { | |
require(!allowedTokenExist(token), "AllowTokens: Token already exists in allowedTokens"); | |
allowedTokens[token] = true; | |
emit AllowedTokenAdded(token); | |
} | |
function removeAllowedToken(address token) external onlyOwner { | |
require(allowedTokenExist(token), "AllowTokens: Token does not exis in allowedTokenst"); | |
allowedTokens[token] = false; | |
emit AllowedTokenRemoved(token); | |
} | |
function enableAllowedTokensValidation() external onlyOwner { | |
validateAllowedTokens = true; | |
emit AllowedTokenValidation(validateAllowedTokens); | |
} | |
function disableAllowedTokensValidation() external onlyOwner { | |
// Before disabling Allowed Tokens Validations some kind of contract validation system | |
// should be implemented on the Bridge for the methods receiveTokens, tokenFallback and tokensReceived | |
validateAllowedTokens = false; | |
emit AllowedTokenValidation(validateAllowedTokens); | |
} | |
function setMaxTokensAllowed(uint256 maxTokens) external onlyOwner { | |
require(maxTokens >= minTokensAllowed, "AllowTokens: Max Tokens should be equal or bigger than Min Tokens"); | |
maxTokensAllowed = maxTokens; | |
emit MaxTokensAllowedChanged(maxTokensAllowed); | |
} | |
function setMinTokensAllowed(uint256 minTokens) external onlyOwner { | |
require(maxTokensAllowed >= minTokens, "AllowTokens: Min Tokens should be equal or smaller than Max Tokens"); | |
minTokensAllowed = minTokens; | |
emit MinTokensAllowedChanged(minTokensAllowed); | |
} | |
function changeDailyLimit(uint256 _dailyLimit) external onlyOwner { | |
require(_dailyLimit >= maxTokensAllowed, "AllowTokens: Daily Limit should be equal or bigger than Max Tokens"); | |
dailyLimit = _dailyLimit; | |
emit DailyLimitChanged(_dailyLimit); | |
} | |
// solium-disable-next-line max-len | |
function isValidTokenTransfer(address tokenToUse, uint amount, uint spentToday, bool isSideToken) external view returns (bool) { | |
if(amount > maxTokensAllowed) | |
return false; | |
if(amount < minTokensAllowed) | |
return false; | |
if (spentToday + amount > dailyLimit || spentToday + amount < spentToday) | |
return false; | |
if(!isSideToken && !isTokenAllowed(tokenToUse)) | |
return false; | |
return true; | |
} | |
function calcMaxWithdraw(uint spentToday) external view returns (uint) { | |
uint maxWithrow = dailyLimit - spentToday; | |
if (dailyLimit < spentToday) | |
return 0; | |
if(maxWithrow > maxTokensAllowed) | |
maxWithrow = maxTokensAllowed; | |
return maxWithrow; | |
} | |
} | |
// File: contracts/zeppelin/token/ERC777/IERC777.sol | |
pragma solidity ^0.5.0; | |
/** | |
* @dev Interface of the ERC777Token standard as defined in the EIP. | |
* | |
* This contract uses the | |
* [ERC1820 registry standard](https://eips.ethereum.org/EIPS/eip-1820) to let | |
* token holders and recipients react to token movements by using setting implementers | |
* for the associated interfaces in said registry. See `IERC1820Registry` and | |
* `ERC1820Implementer`. | |
*/ | |
interface IERC777 { | |
/** | |
* @dev Returns the name of the token. | |
*/ | |
function name() external view returns (string memory); | |
/** | |
* @dev Returns the symbol of the token, usually a shorter version of the | |
* name. | |
*/ | |
function symbol() external view returns (string memory); | |
/** | |
* @dev Returns the smallest part of the token that is not divisible. This | |
* means all token operations (creation, movement and destruction) must have | |
* amounts that are a multiple of this number. | |
* | |
* For most token contracts, this value will equal 1. | |
*/ | |
function granularity() external view returns (uint256); | |
/** | |
* @dev Returns the amount of tokens in existence. | |
*/ | |
function totalSupply() external view returns (uint256); | |
/** | |
* @dev Returns the amount of tokens owned by an account (`owner`). | |
*/ | |
function balanceOf(address owner) external view returns (uint256); | |
/** | |
* @dev Moves `amount` tokens from the caller's account to `recipient`. | |
* | |
* If send or receive hooks are registered for the caller and `recipient`, | |
* the corresponding functions will be called with `data` and empty | |
* `operatorData`. See `IERC777Sender` and `IERC777Recipient`. | |
* | |
* Emits a `Sent` event. | |
* | |
* Requirements | |
* | |
* - the caller must have at least `amount` tokens. | |
* - `recipient` cannot be the zero address. | |
* - if `recipient` is a contract, it must implement the `tokensReceived` | |
* interface. | |
*/ | |
function send(address recipient, uint256 amount, bytes calldata data) external; | |
/** | |
* @dev Destroys `amount` tokens from the caller's account, reducing the | |
* total supply. | |
* | |
* If a send hook is registered for the caller, the corresponding function | |
* will be called with `data` and empty `operatorData`. See `IERC777Sender`. | |
* | |
* Emits a `Burned` event. | |
* | |
* Requirements | |
* | |
* - the caller must have at least `amount` tokens. | |
*/ | |
function burn(uint256 amount, bytes calldata data) external; | |
/** | |
* @dev Returns true if an account is an operator of `tokenHolder`. | |
* Operators can send and burn tokens on behalf of their owners. All | |
* accounts are their own operator. | |
* | |
* See `operatorSend` and `operatorBurn`. | |
*/ | |
function isOperatorFor(address operator, address tokenHolder) external view returns (bool); | |
/** | |
* @dev Make an account an operator of the caller. | |
* | |
* See `isOperatorFor`. | |
* | |
* Emits an `AuthorizedOperator` event. | |
* | |
* Requirements | |
* | |
* - `operator` cannot be calling address. | |
*/ | |
function authorizeOperator(address operator) external; | |
/** | |
* @dev Make an account an operator of the caller. | |
* | |
* See `isOperatorFor` and `defaultOperators`. | |
* | |
* Emits a `RevokedOperator` event. | |
* | |
* Requirements | |
* | |
* - `operator` cannot be calling address. | |
*/ | |
function revokeOperator(address operator) external; | |
/** | |
* @dev Returns the list of default operators. These accounts are operators | |
* for all token holders, even if `authorizeOperator` was never called on | |
* them. | |
* | |
* This list is immutable, but individual holders may revoke these via | |
* `revokeOperator`, in which case `isOperatorFor` will return false. | |
*/ | |
function defaultOperators() external view returns (address[] memory); | |
/** | |
* @dev Moves `amount` tokens from `sender` to `recipient`. The caller must | |
* be an operator of `sender`. | |
* | |
* If send or receive hooks are registered for `sender` and `recipient`, | |
* the corresponding functions will be called with `data` and | |
* `operatorData`. See `IERC777Sender` and `IERC777Recipient`. | |
* | |
* Emits a `Sent` event. | |
* | |
* Requirements | |
* | |
* - `sender` cannot be the zero address. | |
* - `sender` must have at least `amount` tokens. | |
* - the caller must be an operator for `sender`. | |
* - `recipient` cannot be the zero address. | |
* - if `recipient` is a contract, it must implement the `tokensReceived` | |
* interface. | |
*/ | |
function operatorSend( | |
address sender, | |
address recipient, | |
uint256 amount, | |
bytes calldata data, | |
bytes calldata operatorData | |
) external; | |
/** | |
* @dev Destoys `amount` tokens from `account`, reducing the total supply. | |
* The caller must be an operator of `account`. | |
* | |
* If a send hook is registered for `account`, the corresponding function | |
* will be called with `data` and `operatorData`. See `IERC777Sender`. | |
* | |
* Emits a `Burned` event. | |
* | |
* Requirements | |
* | |
* - `account` cannot be the zero address. | |
* - `account` must have at least `amount` tokens. | |
* - the caller must be an operator for `account`. | |
*/ | |
function operatorBurn( | |
address account, | |
uint256 amount, | |
bytes calldata data, | |
bytes calldata operatorData | |
) external; | |
event Sent( | |
address indexed operator, | |
address indexed from, | |
address indexed to, | |
uint256 amount, | |
bytes data, | |
bytes operatorData | |
); | |
event Minted(address indexed operator, address indexed to, uint256 amount, bytes data, bytes operatorData); | |
event Burned(address indexed operator, address indexed from, uint256 amount, bytes data, bytes operatorData); | |
event AuthorizedOperator(address indexed operator, address indexed tokenHolder); | |
event RevokedOperator(address indexed operator, address indexed tokenHolder); | |
} | |
// File: contracts/Utils.sol | |
pragma solidity ^0.5.0; | |
library Utils { | |
using SafeMath for uint256; | |
IERC1820Registry constant private _erc1820 = IERC1820Registry(0x1820a4B7618BdE71Dce8cdc73aAB6C95905faD24); | |
// keccak256("ERC777Token") | |
bytes32 constant private TOKENS_ERC777_HASH = 0xac7fbab5f54a3ca8194167523c6753bfeb96a445279294b6125b68cce2177054; | |
function getTokenInfo(address tokenToUse) external view returns (uint8 decimals, uint256 granularity, string memory symbol) { | |
decimals = getDecimals(tokenToUse); | |
granularity = getGranularity(tokenToUse); | |
symbol = getSymbol(tokenToUse); | |
} | |
function getSymbol(address tokenToUse) public view returns (string memory symbol) { | |
//support 32 bytes or string symbol | |
(bool success, bytes memory data) = tokenToUse.staticcall(abi.encodeWithSignature("symbol()")); | |
require(success, "Utils: Token hasn't symbol()"); | |
if (data.length == 32) { | |
symbol = bytes32ToString(abi.decode(data, (bytes32))); | |
} else { | |
symbol = abi.decode(data, (string)); | |
} | |
require(bytes(symbol).length > 0, "Utils: Token empty symbol"); | |
return symbol; | |
} | |
function getDecimals(address tokenToUse) public view returns (uint8) { | |
//support decimals as uint256 or uint8 | |
(bool success, bytes memory data) = tokenToUse.staticcall(abi.encodeWithSignature("decimals()")); | |
require(success, "Utils: No decimals"); | |
require(data.length == 32, "Utils: Decimals not uint<M>"); | |
// uint<M>: enc(X) is the big-endian encoding of X, | |
//padded on the higher-order (left) side with zero-bytes such that the length is 32 bytes. | |
uint256 decimalsDecoded = abi.decode(data, (uint256)); | |
require(decimalsDecoded <= 18, "Utils: Decimals not in 0 to 18"); | |
return uint8(decimalsDecoded); | |
} | |
function getGranularity(address tokenToUse) public view returns (uint256 granularity) { | |
granularity = 1; | |
//support granularity if ERC777 | |
address implementer = _erc1820.getInterfaceImplementer(tokenToUse, TOKENS_ERC777_HASH); | |
if (implementer != address(0)) { | |
granularity = IERC777(implementer).granularity(); | |
//Verify granularity is power of 10 to keep it compatible with ERC20 decimals | |
granularityToDecimals(granularity); | |
} | |
return granularity; | |
} | |
/* bytes32 (fixed-size array) to string (dynamically-sized array) */ | |
function bytes32ToString(bytes32 _bytes32) internal pure returns (string memory) { | |
uint8 i = 0; | |
while(i < 32 && _bytes32[i] != 0) { | |
i++; | |
} | |
bytes memory bytesArray = new bytes(i); | |
for (i = 0; i < 32 && _bytes32[i] != 0; i++) { | |
bytesArray[i] = _bytes32[i]; | |
} | |
return string(bytesArray); | |
} | |
function decimalsToGranularity(uint8 decimals) public pure returns (uint256) { | |
require(decimals <= 18, "Utils: Decimals not in 0 to 18"); | |
return uint256(10)**(18-decimals); | |
} | |
function granularityToDecimals(uint256 granularity) public pure returns (uint8) { | |
if(granularity == 1) return 18; | |
if(granularity == 10) return 17; | |
if(granularity == 100) return 16; | |
if(granularity == 1000) return 15; | |
if(granularity == 10000) return 14; | |
if(granularity == 100000) return 13; | |
if(granularity == 1000000) return 12; | |
if(granularity == 10000000) return 11; | |
if(granularity == 100000000) return 10; | |
if(granularity == 1000000000) return 9; | |
if(granularity == 10000000000) return 8; | |
if(granularity == 100000000000) return 7; | |
if(granularity == 1000000000000) return 6; | |
if(granularity == 10000000000000) return 5; | |
if(granularity == 100000000000000) return 4; | |
if(granularity == 1000000000000000) return 3; | |
if(granularity == 10000000000000000) return 2; | |
if(granularity == 100000000000000000) return 1; | |
if(granularity == 1000000000000000000) return 0; | |
require(false, "Utils: invalid granularity"); | |
} | |
function calculateGranularityAndAmount(uint8 decimals, uint256 granularity, uint256 amount) external pure | |
returns(uint256 calculatedGranularity, uint256 formattedAmount) { | |
if(decimals == 18) { | |
//tokenAddress is a ERC20 with 18 decimals should have 1 granularity | |
//tokenAddress is a ERC777 token we give the same granularity | |
calculatedGranularity = granularity; | |
formattedAmount = amount; | |
} else { | |
//tokenAddress is a ERC20 with other than 18 decimals | |
calculatedGranularity = decimalsToGranularity(decimals); | |
formattedAmount = amount.mul(calculatedGranularity); | |
} | |
} | |
function calculateDecimalsAndAmount(address tokenAddress, uint256 granularity, uint256 amount) | |
external view returns (uint8 calculatedDecimals, uint256 formattedAmount) { | |
uint8 tokenDecimals = getDecimals(tokenAddress); | |
//As side tokens are ERC777 we need to convert granularity to decimals | |
calculatedDecimals = granularityToDecimals(granularity); | |
require(tokenDecimals == calculatedDecimals, "Utils: Token decimals differ from decimals obtained from granularity"); | |
formattedAmount = amount.div(granularity); | |
} | |
} | |
// File: contracts/Bridge_v1.sol | |
pragma solidity ^0.5.0; | |
// Import base Initializable contract | |
// Import interface and library from OpenZeppelin contracts | |
contract Bridge_v1 is Initializable, IBridge_v1, IERC777Recipient, UpgradablePausable, UpgradableOwnable, ReentrancyGuard { | |
using SafeMath for uint256; | |
using SafeERC20 for IERC20; | |
using Address for address; | |
address constant private NULL_ADDRESS = address(0); | |
bytes32 constant private NULL_HASH = bytes32(0); | |
IERC1820Registry constant private erc1820 = IERC1820Registry(0x1820a4B7618BdE71Dce8cdc73aAB6C95905faD24); | |
address private federation; | |
uint256 private feePercentage; | |
string public symbolPrefix; | |
uint256 public lastDay; | |
uint256 public spentToday; | |
mapping (address => ISideToken) public mappedTokens; // OirignalToken => SideToken | |
mapping (address => address) public originalTokens; // SideToken => OriginalToken | |
mapping (address => bool) public knownTokens; // OriginalToken => true | |
mapping(bytes32 => bool) public processed; // ProcessedHash => true | |
AllowTokens public allowTokens; | |
ISideTokenFactory public sideTokenFactory; | |
//Bridge_v1 variables | |
bool public isUpgrading; | |
uint256 constant public feePercentageDivider = 10000; // Porcentage with up to 2 decimals | |
event FederationChanged(address _newFederation); | |
event SideTokenFactoryChanged(address _newSideTokenFactory); | |
event Upgrading(bool isUpgrading); | |
function initialize( | |
address _manager, | |
address _federation, | |
address _allowTokens, | |
address _sideTokenFactory, | |
string memory _symbolPrefix | |
) public initializer { | |
UpgradableOwnable.initialize(_manager); | |
UpgradablePausable.initialize(_manager); | |
symbolPrefix = _symbolPrefix; | |
allowTokens = AllowTokens(_allowTokens); | |
_changeSideTokenFactory(_sideTokenFactory); | |
_changeFederation(_federation); | |
//keccak256("ERC777TokensRecipient") | |
erc1820.setInterfaceImplementer(address(this), 0xb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b, address(this)); | |
} | |
function version() external pure returns (string memory) { | |
return "v1"; | |
} | |
modifier onlyFederation() { | |
require(msg.sender == federation, "Bridge: Sender not Federation"); | |
_; | |
} | |
modifier whenNotUpgrading() { | |
require(!isUpgrading, "Bridge: Upgrading"); | |
_; | |
} | |
function acceptTransfer( | |
address tokenAddress, | |
address receiver, | |
uint256 amount, | |
string calldata symbol, | |
bytes32 blockHash, | |
bytes32 transactionHash, | |
uint32 logIndex, | |
uint8 decimals, | |
uint256 granularity | |
) external onlyFederation whenNotPaused nonReentrant returns(bool) { | |
require(tokenAddress != NULL_ADDRESS, "Bridge: Token is null"); | |
require(receiver != NULL_ADDRESS, "Bridge: Receiver is null"); | |
require(amount > 0, "Bridge: Amount 0"); | |
require(bytes(symbol).length > 0, "Bridge: Empty symbol"); | |
require(blockHash != NULL_HASH, "Bridge: BlockHash is null"); | |
require(transactionHash != NULL_HASH, "Bridge: Transaction is null"); | |
require(decimals <= 18, "Bridge: Decimals bigger 18"); | |
require(Utils.granularityToDecimals(granularity) <= 18, "Bridge: invalid granularity"); | |
_processTransaction(blockHash, transactionHash, receiver, amount, logIndex); | |
if (knownTokens[tokenAddress]) { | |
_acceptCrossBackToToken(receiver, tokenAddress, decimals, granularity, amount); | |
} else { | |
_acceptCrossToSideToken(receiver, tokenAddress, decimals, granularity, amount, symbol); | |
} | |
return true; | |
} | |
function _acceptCrossToSideToken( | |
address receiver, | |
address tokenAddress, | |
uint8 decimals, | |
uint256 granularity, | |
uint256 amount, | |
string memory symbol | |
) private { | |
(uint256 calculatedGranularity,uint256 formattedAmount) = Utils.calculateGranularityAndAmount(decimals, granularity, amount); | |
ISideToken sideToken = mappedTokens[tokenAddress]; | |
if (address(sideToken) == NULL_ADDRESS) { | |
sideToken = _createSideToken(tokenAddress, symbol, calculatedGranularity); | |
} else { | |
require(calculatedGranularity == sideToken.granularity(), "Bridge: Granularity differ from side token"); | |
} | |
sideToken.mint(receiver, formattedAmount, "", ""); | |
emit AcceptedCrossTransfer(tokenAddress, receiver, amount, decimals, granularity, formattedAmount, 18, calculatedGranularity); | |
} | |
function _acceptCrossBackToToken(address receiver, address tokenAddress, uint8 decimals, uint256 granularity, uint256 amount) private { | |
require(decimals == 18, "Bridge: Invalid decimals cross back"); | |
//As side tokens are ERC777 we need to convert granularity to decimals | |
(uint8 calculatedDecimals, uint256 formattedAmount) = Utils.calculateDecimalsAndAmount(tokenAddress, granularity, amount); | |
IERC20(tokenAddress).safeTransfer(receiver, formattedAmount); | |
emit AcceptedCrossTransfer(tokenAddress, receiver, amount, decimals, granularity, formattedAmount, calculatedDecimals, 1); | |
} | |
/** | |
* ERC-20 tokens approve and transferFrom pattern | |
* See https://eips.ethereum.org/EIPS/eip-20#transferfrom | |
*/ | |
function receiveTokens(address tokenToUse, uint256 amount) external whenNotUpgrading whenNotPaused nonReentrant returns(bool) { | |
address sender = _msgSender(); | |
require(!sender.isContract(), "Bridge: Sender can't be a contract"); | |
//Transfer the tokens on IERC20, they should be already Approved for the bridge Address to use them | |
IERC20(tokenToUse).safeTransferFrom(_msgSender(), address(this), amount); | |
crossTokens(tokenToUse, sender, amount, ""); | |
return true; | |
} | |
/** | |
* ERC-777 tokensReceived hook allows to send tokens to a contract and notify it in a single transaction | |
* See https://eips.ethereum.org/EIPS/eip-777#motivation for details | |
*/ | |
function tokensReceived ( | |
address operator, | |
address from, | |
address to, | |
uint amount, | |
bytes calldata userData, | |
bytes calldata | |
) external whenNotPaused whenNotUpgrading { | |
//Hook from ERC777address | |
if(operator == address(this)) return; // Avoid loop from bridge calling to ERC77transferFrom | |
require(to == address(this), "Bridge: Not to address"); | |
address tokenToUse = _msgSender(); | |
//This can only be used with trusted contracts | |
crossTokens(tokenToUse, from, amount, userData); | |
} | |
function crossTokens(address tokenToUse, address from, uint256 amount, bytes memory userData) private { | |
bool isASideToken = originalTokens[tokenToUse] != NULL_ADDRESS; | |
//Send the payment to the MultiSig of the Federation | |
uint256 fee = 0; | |
if(feePercentage > 0) { | |
fee = amount.mul(feePercentage).div(feePercentageDivider); | |
IERC20(tokenToUse).safeTransfer(owner(), fee); | |
} | |
uint256 amountMinusFees = amount - fee; | |
if (isASideToken) { | |
verifyWithAllowTokens(tokenToUse, amount, isASideToken); | |
//Side Token Crossing | |
ISideToken(tokenToUse).burn(amountMinusFees, userData); | |
// solium-disable-next-line max-len | |
emit Cross(originalTokens[tokenToUse], from, amountMinusFees, ISideToken(tokenToUse).symbol(), userData, ISideToken(tokenToUse).decimals(), ISideToken(tokenToUse).granularity()); | |
} else { | |
//Main Token Crossing | |
knownTokens[tokenToUse] = true; | |
(uint8 decimals, uint256 granularity, string memory symbol) = Utils.getTokenInfo(tokenToUse); | |
uint formattedAmount = amount; | |
if(decimals != 18) { | |
formattedAmount = amount.mul(uint256(10)**(18-decimals)); | |
} | |
//We consider the amount before fees converted to 18 decimals to check the limits | |
verifyWithAllowTokens(tokenToUse, formattedAmount, isASideToken); | |
emit Cross(tokenToUse, from, amountMinusFees, symbol, userData, decimals, granularity); | |
} | |
} | |
function _createSideToken(address token, string memory symbol, uint256 granularity) private returns (ISideToken sideToken){ | |
string memory newSymbol = string(abi.encodePacked(symbolPrefix, symbol)); | |
address sideTokenAddress = sideTokenFactory.createSideToken(newSymbol, newSymbol, granularity); | |
sideToken = ISideToken(sideTokenAddress); | |
mappedTokens[token] = sideToken; | |
originalTokens[sideTokenAddress] = token; | |
emit NewSideToken(sideTokenAddress, token, newSymbol, granularity); | |
return sideToken; | |
} | |
function verifyWithAllowTokens(address tokenToUse, uint256 amount, bool isASideToken) private { | |
// solium-disable-next-line security/no-block-members | |
if (now > lastDay + 24 hours) { | |
// solium-disable-next-line security/no-block-members | |
lastDay = now; | |
spentToday = 0; | |
} | |
require(allowTokens.isValidTokenTransfer(tokenToUse, amount, spentToday, isASideToken), "Bridge: Bigger than limit"); | |
spentToday = spentToday.add(amount); | |
} | |
function getTransactionId( | |
bytes32 _blockHash, | |
bytes32 _transactionHash, | |
address _receiver, | |
uint256 _amount, | |
uint32 _logIndex | |
) | |
public pure returns(bytes32) | |
{ | |
return keccak256(abi.encodePacked(_blockHash, _transactionHash, _receiver, _amount, _logIndex)); | |
} | |
function _processTransaction( | |
bytes32 _blockHash, | |
bytes32 _transactionHash, | |
address _receiver, | |
uint256 _amount, | |
uint32 _logIndex | |
) | |
private | |
{ | |
bytes32 compiledId = getTransactionId(_blockHash, _transactionHash, _receiver, _amount, _logIndex); | |
require(!processed[compiledId], "Bridge: Already processed"); | |
processed[compiledId] = true; | |
} | |
function setFeePercentage(uint amount) external onlyOwner whenNotPaused { | |
require(amount < (feePercentageDivider/10), "Bridge: bigger than 10%"); | |
feePercentage = amount; | |
emit FeePercentageChanged(feePercentage); | |
} | |
function getFeePercentage() external view returns(uint) { | |
return feePercentage; | |
} | |
function calcMaxWithdraw() external view returns (uint) { | |
uint spent = spentToday; | |
// solium-disable-next-line security/no-block-members | |
if (now > lastDay + 24 hours) | |
spent = 0; | |
return allowTokens.calcMaxWithdraw(spent); | |
} | |
function changeFederation(address newFederation) external onlyOwner returns(bool) { | |
_changeFederation(newFederation); | |
return true; | |
} | |
function _changeFederation(address newFederation) internal { | |
require(newFederation != NULL_ADDRESS, "Bridge: Federation is empty"); | |
federation = newFederation; | |
emit FederationChanged(federation); | |
} | |
function getFederation() external view returns(address) { | |
return federation; | |
} | |
function changeSideTokenFactory(address newSideTokenFactory) external onlyOwner returns(bool) { | |
_changeSideTokenFactory(newSideTokenFactory); | |
return true; | |
} | |
function _changeSideTokenFactory(address newSideTokenFactory) internal { | |
require(newSideTokenFactory != NULL_ADDRESS, "Bridge: SideTokenFactory is empty"); | |
sideTokenFactory = ISideTokenFactory(newSideTokenFactory); | |
emit SideTokenFactoryChanged(newSideTokenFactory); | |
} | |
//This method is only for testnet to erase the Chain Link Token and recreate it with the new version that is ERC677 compatible. | |
//It wont be in the mainnet release | |
function clearSideToken(address originalToken) external onlyOwner returns(bool){ | |
address sideToken = address(mappedTokens[originalToken]); | |
originalTokens[sideToken] = NULL_ADDRESS; | |
mappedTokens[originalToken] = ISideToken(NULL_ADDRESS); | |
return true; | |
} | |
function startUpgrade() external onlyOwner { | |
isUpgrading = true; | |
emit Upgrading(isUpgrading); | |
} | |
function endUpgrade() external onlyOwner { | |
isUpgrading = false; | |
emit Upgrading(isUpgrading); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment