mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
11 lines
304 B
Solidity
11 lines
304 B
Solidity
|
pragma solidity ^0.7.0;
|
||
|
|
||
|
interface RootChainManagerInterface {
|
||
|
function depositEtherFor(address user) external payable;
|
||
|
function depositFor(
|
||
|
address user,
|
||
|
address rootToken,
|
||
|
bytes calldata depositData
|
||
|
) external;
|
||
|
function exit(bytes calldata inputData) external;
|
||
|
}
|