2022-03-22 14:55:14 +00:00
|
|
|
//SPDX-License-Identifier: MIT
|
2021-10-04 17:30:09 +00:00
|
|
|
pragma solidity ^0.7.0;
|
|
|
|
pragma experimental ABIEncoderV2;
|
|
|
|
|
|
|
|
import { DSMath } from "../../common/math.sol";
|
|
|
|
import { Basic } from "../../common/basic.sol";
|
|
|
|
import { ListInterface } from "./interface.sol";
|
|
|
|
|
|
|
|
abstract contract Helpers is DSMath, Basic {
|
|
|
|
ListInterface internal constant listContract = ListInterface(0x9926955e0Dd681Dc303370C52f4Ad0a4dd061687);
|
|
|
|
|
|
|
|
function checkAuthCount() internal view returns (uint count) {
|
|
|
|
uint64 accountId = listContract.accountID(address(this));
|
|
|
|
count = listContract.accountLink(accountId).count;
|
|
|
|
}
|
|
|
|
}
|