13 lines
436 B
Solidity
13 lines
436 B
Solidity
|
|
// 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);
|
||
|
|
|