150 lines
4.9 KiB
Solidity
150 lines
4.9 KiB
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.20;
|
|
|
|
import "@openzeppelin/contracts/access/AccessControl.sol";
|
|
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
|
|
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
|
|
import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
|
|
import "../../interfaces/IChainAdapter.sol";
|
|
|
|
contract FabricAdapter is IChainAdapter, AccessControl, ReentrancyGuard {
|
|
using SafeERC20 for IERC20;
|
|
|
|
bytes32 public constant BRIDGE_OPERATOR_ROLE = keccak256("BRIDGE_OPERATOR_ROLE");
|
|
bytes32 public constant FABRIC_OPERATOR_ROLE = keccak256("FABRIC_OPERATOR_ROLE");
|
|
|
|
bool public isActive;
|
|
string public fabricChannel;
|
|
string public fabricChaincode;
|
|
|
|
mapping(bytes32 => BridgeRequest) public bridgeRequests;
|
|
mapping(bytes32 => string) public fabricTxIds;
|
|
mapping(address => uint256) public nonces;
|
|
|
|
event FabricBridgeInitiated(
|
|
bytes32 indexed requestId,
|
|
address indexed sender,
|
|
address indexed token,
|
|
uint256 amount,
|
|
string fabricChannel,
|
|
string fabricChaincode
|
|
);
|
|
|
|
event FabricBridgeConfirmed(
|
|
bytes32 indexed requestId,
|
|
string indexed fabricTxId,
|
|
string fabricChannel
|
|
);
|
|
|
|
constructor(
|
|
address admin,
|
|
string memory _fabricChannel,
|
|
string memory _fabricChaincode
|
|
) {
|
|
_grantRole(DEFAULT_ADMIN_ROLE, admin);
|
|
_grantRole(BRIDGE_OPERATOR_ROLE, admin);
|
|
_grantRole(FABRIC_OPERATOR_ROLE, admin);
|
|
fabricChannel = _fabricChannel;
|
|
fabricChaincode = _fabricChaincode;
|
|
isActive = true;
|
|
}
|
|
|
|
function getChainType() external pure override returns (string memory) {
|
|
return "Fabric";
|
|
}
|
|
|
|
function getChainIdentifier() external view override returns (uint256 chainId, string memory identifier) {
|
|
return (0, string(abi.encodePacked("Fabric-", fabricChannel)));
|
|
}
|
|
|
|
function validateDestination(bytes calldata destination) external pure override returns (bool) {
|
|
return destination.length > 0;
|
|
}
|
|
|
|
function bridge(
|
|
address token,
|
|
uint256 amount,
|
|
bytes calldata destination,
|
|
bytes calldata recipient
|
|
) external payable override nonReentrant returns (bytes32 requestId) {
|
|
require(isActive, "Adapter inactive");
|
|
require(amount > 0, "Zero amount");
|
|
|
|
requestId = keccak256(abi.encodePacked(
|
|
msg.sender,
|
|
token,
|
|
amount,
|
|
destination,
|
|
fabricChannel,
|
|
nonces[msg.sender]++,
|
|
block.timestamp
|
|
));
|
|
|
|
if (token == address(0)) {
|
|
require(msg.value >= amount, "Insufficient ETH");
|
|
} else {
|
|
IERC20(token).safeTransferFrom(msg.sender, address(this), amount);
|
|
}
|
|
|
|
bridgeRequests[requestId] = BridgeRequest({
|
|
sender: msg.sender,
|
|
token: token,
|
|
amount: amount,
|
|
destinationData: destination,
|
|
requestId: requestId,
|
|
status: BridgeStatus.Locked,
|
|
createdAt: block.timestamp,
|
|
completedAt: 0
|
|
});
|
|
|
|
emit FabricBridgeInitiated(requestId, msg.sender, token, amount, fabricChannel, fabricChaincode);
|
|
return requestId;
|
|
}
|
|
|
|
function confirmFabricOperation(
|
|
bytes32 requestId,
|
|
string calldata fabricTxId
|
|
) external onlyRole(FABRIC_OPERATOR_ROLE) {
|
|
BridgeRequest storage request = bridgeRequests[requestId];
|
|
require(request.status == BridgeStatus.Locked, "Invalid status");
|
|
|
|
request.status = BridgeStatus.Confirmed;
|
|
request.completedAt = block.timestamp;
|
|
fabricTxIds[requestId] = fabricTxId;
|
|
|
|
emit FabricBridgeConfirmed(requestId, fabricTxId, fabricChannel);
|
|
}
|
|
|
|
function getBridgeStatus(bytes32 requestId)
|
|
external view override returns (BridgeRequest memory) {
|
|
return bridgeRequests[requestId];
|
|
}
|
|
|
|
function cancelBridge(bytes32 requestId) external override returns (bool) {
|
|
BridgeRequest storage request = bridgeRequests[requestId];
|
|
require(request.status == BridgeStatus.Pending || request.status == BridgeStatus.Locked, "Cannot cancel");
|
|
require(msg.sender == request.sender, "Not request sender");
|
|
|
|
if (request.token == address(0)) {
|
|
payable(request.sender).transfer(request.amount);
|
|
} else {
|
|
IERC20(request.token).safeTransfer(request.sender, request.amount);
|
|
}
|
|
|
|
request.status = BridgeStatus.Cancelled;
|
|
return true;
|
|
}
|
|
|
|
function estimateFee(
|
|
address token,
|
|
uint256 amount,
|
|
bytes calldata destination
|
|
) external view override returns (uint256 fee) {
|
|
return 0;
|
|
}
|
|
|
|
function setIsActive(bool _isActive) external onlyRole(DEFAULT_ADMIN_ROLE) {
|
|
isActive = _isActive;
|
|
}
|
|
}
|