mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
11 lines
311 B
Solidity
11 lines
311 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.7.0;
|
|
|
|
import "./variables.sol";
|
|
import { Basic } from "../../common/basic.sol";
|
|
|
|
contract Helpers is Variables, Basic {
|
|
function claimableArbTokens(address user) internal view returns (uint256) {
|
|
return ARBITRUM_TOKEN_DISTRIBUTOR.claimableTokens(user);
|
|
}
|
|
} |