mirror of
https://github.com/Instadapp/dsa-periphery-contract.git
synced 2024-07-29 22:27:13 +00:00
13 lines
280 B
Solidity
13 lines
280 B
Solidity
|
//SPDX-License-Identifier: MIT
|
||
|
pragma solidity ^0.8.0;
|
||
|
|
||
|
interface IDSA {
|
||
|
function cast(
|
||
|
string[] calldata _targetNames,
|
||
|
bytes[] calldata _datas,
|
||
|
address _origin
|
||
|
) external payable returns (bytes32);
|
||
|
|
||
|
function isAuth(address user) external view returns (bool);
|
||
|
}
|