Files
smom-dbis-138/contracts/emoney/errors/BridgeErrors.sol

13 lines
436 B
Solidity
Raw Normal View History

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
error BridgeZeroToken();
error BridgeZeroAmount();
error BridgeZeroRecipient();
error BridgeTransferBlocked(address token, address from, address to, uint256 amount);
error BridgeLightClientNotSet();
error BridgeProofVerificationFailed(bytes32 sourceChain, bytes32 sourceTx);
error BridgeRecipientNotCompliant(address recipient);
error BridgeRecipientFrozen(address recipient);