mirror of
https://github.com/tornadocash/tornado-nova
synced 2024-02-02 14:53:56 +01:00
14 lines
459 B
Solidity
14 lines
459 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.7.0;
|
|
|
|
// https://docs.tokenbridge.net/amb-bridge/development-of-a-cross-chain-application/how-to-develop-xchain-apps-by-amb#call-a-method-in-another-chain-using-the-amb-bridge
|
|
interface IAMB {
|
|
function messageSender() external view returns (address);
|
|
|
|
function messageSourceChainId() external view returns (bytes32);
|
|
}
|
|
|
|
interface IOmniBridge {
|
|
function bridgeContract() external view returns (IAMB);
|
|
}
|