mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
6 lines
199 B
Solidity
6 lines
199 B
Solidity
|
// SPDX-License-Identifier: MIT
|
||
|
pragma solidity ^0.8.0;
|
||
|
|
||
|
interface IAvoFactoryMultisig {
|
||
|
function computeAvocado(address owner_, uint32 index_) external view returns (address computedAddress_);
|
||
|
}
|