Skip to content

Latest commit

 

History

History
382 lines (328 loc) · 11.1 KB

LiquidityMiningConfigToken.md

File metadata and controls

382 lines (328 loc) · 11.1 KB

Dummy token with 0 total supply.

  • (LiquidityMiningConfigToken.sol)

View Source: contracts/farm/LiquidityMiningConfigToken.sol

↗ Extends: IERC20_

LiquidityMiningConfigToken contract

We need this token for having a flexibility with LiquidityMining configuration

Functions


totalSupply

undefined

function totalSupply() external view
returns(uint256)
Source Code
function totalSupply() external view returns (uint256) {
        return 0;
    }

balanceOf

undefined

function balanceOf(address account) external view
returns(uint256)

Arguments

Name Type Description
account address
Source Code
function balanceOf(address account) external view returns (uint256) {
        return 0;
    }

transfer

undefined

function transfer(address recipient, uint256 amount) external nonpayable
returns(bool)

Arguments

Name Type Description
recipient address
amount uint256
Source Code
function transfer(address recipient, uint256 amount) external returns (bool) {
        return false;
    }

allowance

undefined

function allowance(address owner, address spender) external view
returns(uint256)

Arguments

Name Type Description
owner address
spender address
Source Code
function allowance(address owner, address spender) external view returns (uint256) {
        return 0;
    }

approve

undefined

function approve(address spender, uint256 amount) external nonpayable
returns(bool)

Arguments

Name Type Description
spender address
amount uint256
Source Code
function approve(address spender, uint256 amount) external returns (bool) {
        return false;
    }

transferFrom

⤾ overrides MultiSigKeyHolders.transferFrom

function transferFrom(address sender, address recipient, uint256 amount) external nonpayable
returns(bool)

Arguments

Name Type Description
sender address
recipient address
amount uint256
Source Code
function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool) {
        return false;
    }

Contracts