Infinity is an innovative decentralized reserve currency protocol based on the IND token on the BNB chain. Each IND token is backed by a basket of assets (e.g. USDT) in the treasury, giving it an intrinsic value that it cannot fall below. We are a community-driven DAO that introduces unique economic and game-theoretic dynamics into the market through staking and bonding. These two mechanisms are crucial for creating a sustainable reserve currency while optimising short and long term wealth creation for the holders.
Infinity has carried out ODS reform and innovation on the basis of OHM. The ODS model is a new four-in-one technology application, which consists of Olympus, Diamond Chain, Supermarket and Sell Fee.
The characteristics and benefits of ODS model are:
1. Liquidity is controlled by the protocol itself.
2. Get IND token without impermanent loss.
3. Staking becomes the choice to maximise income in the game.
4. Distribute dividends and rewards from the DAO autonomy to every IND token holder.
5. Break the capital rotation of the conventional OHM, use the treasury for other investment purposes and share the profits with the users.
6. Reward holders and punish sellers by imposing selling fees and reward them to the holders.
Contract ownership is not renounced (belongs to a wallet)
IND.transfer(address,uint256) (#898-907) compares to a boolean constant:
-whiteListed[msg.sender] == false && recipient == pair (#900)
IND.transferFrom(address,address,uint256) (#909-919) compares to a boolean constant:
-whiteListed[sender] == false && recipient == pair (#911)
Remove the equality to the boolean constant.
Additional information: link
ERC20Permit.constructor() (#770-785) uses assembly
- INLINE ASM (#772-774)
Do not use evm assembly.
Additional information: link
VaultOwned.setVault(address) (#859-863) should emit an event for:
- _vault = vault_ (#860)
Emit an event for critical parameter changes.
Additional information: link
VaultOwned.setVault(address).vault_ (#859) lacks a zero-check on :
- _vault = vault_ (#860)
IND.setFeeAddress(address)._feeAddress (#890) lacks a zero-check on :
- feeAddress = _feeAddress (#891)
IND.setPair(address)._pair (#894) lacks a zero-check on :
- pair = _pair (#895)
Check that the address is not zero.
Additional information: link
ERC20.ERC20TOKEN_ERC1820_INTERFACE_ID (#609) is never used in IND (#876-944)
Remove unused state variables.
Additional information: link
IND.fee (#881) should be constant
IND.feeDenominator (#882) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
Counters.decrement(Counters.Counter) (#740-742) is never used and should be removed
EnumerableSet._add(EnumerableSet.Set,bytes32) (#33-43) is never used and should be removed
EnumerableSet._at(EnumerableSet.Set,uint256) (#109-112) is never used and should be removed
EnumerableSet._contains(EnumerableSet.Set,bytes32) (#88-90) is never used and should be removed
EnumerableSet._getValues(EnumerableSet.Set) (#114-116) is never used and should be removed
EnumerableSet._insert(EnumerableSet.Set,uint256,bytes32) (#123-129) is never used and should be removed
EnumerableSet._length(EnumerableSet.Set) (#95-97) is never used and should be removed
EnumerableSet._remove(EnumerableSet.Set,bytes32) (#51-83) is never used and should be removed
EnumerableSet.add(EnumerableSet.AddressSet,address) (#272-274) is never used and should be removed
EnumerableSet.add(EnumerableSet.Bytes32Set,bytes32) (#205-207) is never used and should be removed
EnumerableSet.add(EnumerableSet.Bytes4Set,bytes4) (#141-143) is never used and should be removed
EnumerableSet.add(EnumerableSet.UInt256Set,uint256) (#398-400) is never used and should be removed
EnumerableSet.add(EnumerableSet.UintSet,uint256) (#346-348) is never used and should be removed
EnumerableSet.at(EnumerableSet.AddressSet,uint256) (#310-312) is never used and should be removed
EnumerableSet.at(EnumerableSet.Bytes32Set,uint256) (#243-245) is never used and should be removed
EnumerableSet.at(EnumerableSet.Bytes4Set,uint256) (#179-181) is never used and should be removed
EnumerableSet.at(EnumerableSet.UInt256Set,uint256) (#436-438) is never used and should be removed
EnumerableSet.at(EnumerableSet.UintSet,uint256) (#384-386) is never used and should be removed
EnumerableSet.contains(EnumerableSet.AddressSet,address) (#289-291) is never used and should be removed
EnumerableSet.contains(EnumerableSet.Bytes32Set,bytes32) (#222-224) is never used and should be removed
EnumerableSet.contains(EnumerableSet.Bytes4Set,bytes4) (#158-160) is never used and should be removed
EnumerableSet.contains(EnumerableSet.UInt256Set,uint256) (#415-417) is never used and should be removed
EnumerableSet.contains(EnumerableSet.UintSet,uint256) (#363-365) is never used and should be removed
EnumerableSet.getValues(EnumerableSet.AddressSet) (#318-327) is never used and should be removed
EnumerableSet.getValues(EnumerableSet.Bytes32Set) (#247-255) is never used and should be removed
EnumerableSet.getValues(EnumerableSet.Bytes4Set) (#183-189) is never used and should be removed
EnumerableSet.insert(EnumerableSet.AddressSet,uint256,address) (#329-331) is never used and should be removed
EnumerableSet.insert(EnumerableSet.Bytes32Set,uint256,bytes32) (#257-259) is never used and should be removed
EnumerableSet.insert(EnumerableSet.Bytes4Set,uint256,bytes4) (#191-193) is never used and should be removed
EnumerableSet.length(EnumerableSet.AddressSet) (#296-298) is never used and should be removed
EnumerableSet.length(EnumerableSet.Bytes32Set) (#229-231) is never used and should be removed
EnumerableSet.length(EnumerableSet.Bytes4Set) (#165-167) is never used and should be removed
EnumerableSet.length(EnumerableSet.UInt256Set) (#422-424) is never used and should be removed
EnumerableSet.length(EnumerableSet.UintSet) (#370-372) is never used and should be removed
EnumerableSet.remove(EnumerableSet.AddressSet,address) (#282-284) is never used and should be removed
EnumerableSet.remove(EnumerableSet.Bytes32Set,bytes32) (#215-217) is never used and should be removed
EnumerableSet.remove(EnumerableSet.Bytes4Set,bytes4) (#151-153) is never used and should be removed
EnumerableSet.remove(EnumerableSet.UInt256Set,uint256) (#408-410) is never used and should be removed
EnumerableSet.remove(EnumerableSet.UintSet,uint256) (#356-358) is never used and should be removed
SafeMath.average(uint256,uint256) (#590-593) is never used and should be removed
SafeMath.bondingCurve(uint256,uint256) (#599-601) is never used and should be removed
SafeMath.mod(uint256,uint256) (#556-558) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#560-563) is never used and should be removed
SafeMath.percentageAmount(uint256,uint8) (#578-580) is never used and should be removed
SafeMath.percentageOfTotal(uint256,uint256) (#586-588) is never used and should be removed
SafeMath.quadraticPricing(uint256,uint256) (#595-597) is never used and should be removed
SafeMath.sqrrt(uint256) (#565-576) is never used and should be removed
SafeMath.substractPercentage(uint256,uint8) (#582-584) is never used and should be removed
Remove unused functions.
Additional information: link
Variable ERC20._balances (#612) is not in mixedCase
Variable ERC20._allowances (#615) is not in mixedCase
Variable ERC20._totalSupply (#618) is not in mixedCase
Variable ERC20._name (#621) is not in mixedCase
Variable ERC20._symbol (#624) is not in mixedCase
Variable ERC20._decimals (#627) is not in mixedCase
Variable ERC20Permit.DOMAIN_SEPARATOR (#768) is not in mixedCase
Variable Ownable._owner (#825) is not in mixedCase
Variable VaultOwned._vault (#857) is not in mixedCase
Parameter IND.setFeeAddress(address)._feeAddress (#890) is not in mixedCase
Parameter IND.setPair(address)._pair (#894) is not in mixedCase
Function IND._burnFrom(address,uint256) (#933-942) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
symbol() should be declared external:
- ERC20.symbol() (#639-641)
decimals() should be declared external:
- ERC20.decimals() (#643-645)
totalSupply() should be declared external:
- ERC20.totalSupply() (#647-649)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (#651-653)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#655-658)
- IND.transfer(address,uint256) (#898-907)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#664-667)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#669-673)
- IND.transferFrom(address,address,uint256) (#909-919)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#675-678)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#680-683)
permit(address,address,uint256,uint256,uint8,bytes32,bytes32) should be declared external:
- ERC20Permit.permit(address,address,uint256,uint256,uint8,bytes32,bytes32) (#787-808)
nonces(address) should be declared external:
- ERC20Permit.nonces(address) (#810-812)
owner() should be declared external:
- Ownable.owner() (#834-836)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#843-846)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#848-852)
vault() should be declared external:
- VaultOwned.vault() (#865-867)
burn(uint256) should be declared external:
- IND.burn(uint256) (#925-927)
burnFrom(address,uint256) should be declared external:
- IND.burnFrom(address,uint256) (#929-931)
Use the external attribute for functions never called from the contract.
Additional information: link
ERC20Permit.permit(address,address,uint256,uint256,uint8,bytes32,bytes32) (#787-808) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp <= deadline,Permit: expired deadline) (#796)
Avoid relying on block.timestamp.
Additional information: link
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Unable to find Telegram account
Unable to find Youtube account