2023-09-01 12:59:14 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2023-09-01 14:28:19 +00:00
|
|
|
pragma solidity ^0.7.0;
|
2023-09-01 12:59:14 +00:00
|
|
|
|
|
|
|
interface IAvoFactoryMultisig {
|
|
|
|
function computeAvocado(address owner_, uint32 index_) external view returns (address computedAddress_);
|
|
|
|
}
|