Page cover
For the complete documentation index, see llms.txt. This page is also available as Markdown.

BEP20 Contract Functions

Solve all your doubs about the iVip Token

Used variables

address public _previousOwner;
uint256 public _locktime;
uint256 public _nownow;
uint256 private _amountt;
uint256 public amountMint;

Burn address

address _addressburn = 0x000000000000000000000000000000000000dEaD;

Mined supply and maximum supply

 uint256 private constant _preMineSupply = 11999999998 * (10 ** 5); // 12 billions (60% supply)
 uint256 private constant _maxSupply = 20000000000 * (10 ** 5); // 20 billions max. supply (100% supply)

Current owner

function getOwner() external override view returns (address) {
        return owner();
    }

Token name

Decimals

Token symbol

Total supply

Circulating supply

Burnt amount

Mined supply

Total supply

Wallet balance

Transfer function

Programmed minting

Minting start

Minting function

Last updated