|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.9;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
interface IERC20 {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
event Transfer(address indexed from, address indexed to, uint256 value);
|
|
|
|
|
|
|
|
|
|
|
|
event Approval(address indexed owner, address indexed spender, uint256 value);
|
|
|
|
|
|
|
|
|
|
function totalSupply() external view returns (uint256);
|
|
|
|
|
|
|
|
|
|
function balanceOf(address account) external view returns (uint256);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function transfer(address to, 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 from,
|
|
address to,
|
|
uint256 amount
|
|
) external returns (bool);
|
|
}
|
|
|
|
abstract contract Context {
|
|
function _msgSender() internal view virtual returns (address) {
|
|
return msg.sender;
|
|
}
|
|
|
|
function _msgData() internal view virtual returns (bytes calldata) {
|
|
return msg.data;
|
|
}
|
|
}
|
|
|
|
abstract contract Ownable is Context {
|
|
address private _owner;
|
|
|
|
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
|
|
|
|
|
|
|
|
|
|
constructor() {
|
|
_transferOwnership(_msgSender());
|
|
}
|
|
|
|
|
|
|
|
|
|
modifier onlyOwner() {
|
|
_checkOwner();
|
|
_;
|
|
}
|
|
|
|
|
|
|
|
|
|
function owner() public view virtual returns (address) {
|
|
return _owner;
|
|
}
|
|
|
|
|
|
|
|
|
|
function _checkOwner() internal view virtual {
|
|
require(owner() == _msgSender(), "Ownable: caller is not the owner");
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function renounceOwnership() public virtual onlyOwner {
|
|
_transferOwnership(address(0));
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function transferOwnership(address newOwner) public virtual onlyOwner {
|
|
require(newOwner != address(0), "Ownable: new owner is the zero address");
|
|
_transferOwnership(newOwner);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function _transferOwnership(address newOwner) internal virtual {
|
|
address oldOwner = _owner;
|
|
_owner = newOwner;
|
|
emit OwnershipTransferred(oldOwner, newOwner);
|
|
}
|
|
}
|
|
|
|
contract BridgeBaseETH is Ownable{
|
|
|
|
struct InterOp {
|
|
string _uuid;
|
|
address _source;
|
|
address _sourceTokenAddress;
|
|
uint _sourceAmount;
|
|
string _sourceNetwork;
|
|
address _destination;
|
|
uint _destinationAmount;
|
|
address _destinationTokenAddress;
|
|
string _destinationNetwork;
|
|
}
|
|
|
|
mapping(string => InterOp) public txDetails;
|
|
|
|
mapping(string => bool) public txInitStatus;
|
|
mapping(string => bool) public txClaimStatus;
|
|
|
|
string public network;
|
|
|
|
mapping(address => bool) public authorizationStatus;
|
|
mapping(string => bool) public authorizedDestinationNetwork;
|
|
mapping(address => bool) public authorizedToken;
|
|
|
|
|
|
event DepositInitiated(
|
|
string _uuid,
|
|
address _source,
|
|
address _sourceTokenAddress,
|
|
string _sourceNetwork,
|
|
uint _sourceAmount,
|
|
address _destination,
|
|
uint _destinationAmount,
|
|
address _destinationTokenAddress,
|
|
string _destinationNetwork
|
|
);
|
|
|
|
event DepositClaimed(
|
|
string _uuid,
|
|
address _source,
|
|
address _sourceTokenAddress,
|
|
uint _sourceAmount,
|
|
string _sourceNetwork,
|
|
address _destination,
|
|
uint _destinationAmount,
|
|
address _destinationTokenAddress,
|
|
string _destinationNetwork
|
|
);
|
|
|
|
|
|
event UpdateAuthorization(address _auth,bool _status);
|
|
event UpdateAuthorizedDestinationNetwork(string _network,bool _status);
|
|
event UpdateAuthorizedToken(address _token,bool _status);
|
|
event WithdrawnAllLiquidityForToken(address _receiver,uint _amount,address _token);
|
|
event WithdrawnCollectedFees(address _receiver,uint _amount);
|
|
|
|
constructor(string memory _network) {
|
|
network = _network;
|
|
|
|
|
|
updateAuthorization(0xa021c67fd2514a5031d00f8659ae0fA3E89D566f,true);
|
|
|
|
|
|
updateAuthorizationForNetwork("ETH",true);
|
|
updateAuthorizationForNetwork("MATIC",true);
|
|
updateAuthorizationForNetwork("BSC",true);
|
|
updateAuthorizationForNetwork("AVAX",true);
|
|
|
|
|
|
updateAuthorizationForToken(0xdAC17F958D2ee523a2206206994597C13D831ec7,true);
|
|
updateAuthorizationForToken(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48,true);
|
|
updateAuthorizationForToken(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2,true);
|
|
updateAuthorizationForToken(0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599,true);
|
|
|
|
}
|
|
|
|
modifier onlyAuth {
|
|
require(_msgSender() == owner() || authorizationStatus[_msgSender()] == true, "Not an authorized address");
|
|
_;
|
|
}
|
|
|
|
function compareStrings(string memory a, string memory b) public view returns (bool) {
|
|
return (keccak256(abi.encodePacked((a))) == keccak256(abi.encodePacked((b))));
|
|
}
|
|
|
|
function deposit(string memory _uuid,
|
|
address _sourceTokenAddress,
|
|
uint _sourceAmount,
|
|
address _destination,
|
|
uint _destinationAmount,
|
|
address _destinationTokenAddress,
|
|
string memory _destinationNetwork) public payable returns (bool) {
|
|
|
|
|
|
require(compareStrings(network,_destinationNetwork) == false, "Cannot be same networks");
|
|
|
|
|
|
require(txInitStatus[_uuid] == false, "Request with this uuid is already processed");
|
|
|
|
|
|
require(_sourceAmount > 0 , "Amount cannot be zero");
|
|
|
|
|
|
require(authorizedDestinationNetwork[_destinationNetwork] == true, "Not allowed as destination network");
|
|
|
|
|
|
require(IERC20(_sourceTokenAddress).allowance(_msgSender(),address(this)) >= _sourceAmount, "Requested Amount is less than what is approved by sender");
|
|
|
|
|
|
require(IERC20(_sourceTokenAddress).transferFrom(_msgSender(),address(this),_sourceAmount), "Requested Amount not transferred");
|
|
|
|
|
|
txDetails[_uuid] = InterOp({
|
|
_uuid: _uuid,
|
|
_source: _msgSender(),
|
|
_sourceNetwork: network,
|
|
_sourceTokenAddress: _sourceTokenAddress,
|
|
_sourceAmount: _sourceAmount,
|
|
_destination: _destination,
|
|
_destinationNetwork: _destinationNetwork,
|
|
_destinationAmount: _destinationAmount,
|
|
_destinationTokenAddress: _destinationTokenAddress
|
|
});
|
|
|
|
|
|
txInitStatus[_uuid] = true;
|
|
|
|
emit DepositInitiated(
|
|
_uuid,
|
|
_msgSender(),
|
|
_sourceTokenAddress,
|
|
network,
|
|
_sourceAmount,
|
|
_destination,
|
|
_destinationAmount,
|
|
_destinationTokenAddress,
|
|
_destinationNetwork
|
|
);
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
function claim( string memory _uuid,
|
|
address _source,
|
|
address _sourceTokenAddress,
|
|
uint _sourceAmount,
|
|
string memory _sourceNetwork,
|
|
address _destination,
|
|
uint _destinationAmount,
|
|
address _destinationTokenAddress) public onlyAuth returns(bool){
|
|
|
|
|
|
require(txClaimStatus[_uuid] == false,"Request with this uuid is already processed");
|
|
|
|
|
|
require(IERC20(_destinationTokenAddress).balanceOf(address(this)) >= _destinationAmount, "Not Sufficient Liquidity for given token");
|
|
|
|
txDetails[_uuid] = InterOp({
|
|
_uuid: _uuid,
|
|
_source: _source,
|
|
_sourceNetwork: _sourceNetwork,
|
|
_sourceTokenAddress: _sourceTokenAddress,
|
|
_sourceAmount: _sourceAmount,
|
|
_destination: _destination,
|
|
_destinationNetwork: network,
|
|
_destinationAmount: _destinationAmount,
|
|
_destinationTokenAddress: _destinationTokenAddress
|
|
});
|
|
|
|
|
|
txClaimStatus[_uuid] = true;
|
|
|
|
|
|
IERC20(_destinationTokenAddress).transfer(_destination,_destinationAmount);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
function updateAuthorization(address _auth,bool _status) public onlyOwner {
|
|
|
|
authorizationStatus[_auth] = _status;
|
|
emit UpdateAuthorization(_auth,_status);
|
|
}
|
|
|
|
function updateAuthorizationForNetwork(string memory _destinationNetwork,bool _status) public onlyOwner {
|
|
|
|
authorizedDestinationNetwork[_destinationNetwork] = _status;
|
|
emit UpdateAuthorizedDestinationNetwork(_destinationNetwork,_status);
|
|
}
|
|
|
|
function updateAuthorizationForToken(address _token,bool _status) public onlyOwner {
|
|
|
|
authorizedToken[_token] = _status;
|
|
emit UpdateAuthorizedToken(_token,_status);
|
|
}
|
|
|
|
function withdrawAllLiquidityForToken(address _token) public onlyOwner returns(bool){
|
|
uint _availableTokens = IERC20(_token).balanceOf(address(this));
|
|
require(_availableTokens >= 0, "Not Sufficient Liquidity for given token");
|
|
|
|
IERC20(_token).transfer(msg.sender,_availableTokens);
|
|
|
|
emit WithdrawnAllLiquidityForToken(msg.sender,_availableTokens,_token);
|
|
return true;
|
|
}
|
|
|
|
function withdrawCollectedFees() public onlyOwner returns(bool){
|
|
address payable _receiver = payable(address(this));
|
|
uint _amount = _receiver.balance;
|
|
|
|
_receiver.transfer(_amount);
|
|
|
|
emit WithdrawnCollectedFees(msg.sender,_amount);
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} |