VikingSwap Token Token Logo

VIKING [VikingSwap] Token

About VIKING

Listings

Token 3 years
CoinMarketCap 3 years

Second generation AMM with a deflationary governance token model. Our contracts are unashamedly forked from GooseFinance, and we have introduced similar security protocols such as a 24 hour timelock, and complete removal of the migrator code so that you can farm in peace.

Social

Laser Scorebeta Last Audit: 26 February 2022

report
Token seems to be a scam (type: rug pull scam).


Contract creator or owner is blacklisted for past scams


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains

VikingToken._writeCheckpoint(address,uint32,uint256,uint256) (contracts/VikingToken.sol#212-230) uses a dangerous strict equality:
- nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber (contracts/VikingToken.sol#222)
Don't use strict equality to determine if an account has enough Ether or tokens.

Additional information: link

BEP20.constructor(string,string).name (contracts/libs/BEP20.sol#56) shadows:
- BEP20.name() (contracts/libs/BEP20.sol#72-74) (function)
- IBEP20.name() (contracts/libs/IBEP20.sol#22) (function)
BEP20.constructor(string,string).symbol (contracts/libs/BEP20.sol#56) shadows:
- BEP20.symbol() (contracts/libs/BEP20.sol#80-82) (function)
- IBEP20.symbol() (contracts/libs/IBEP20.sol#17) (function)
BEP20.allowance(address,address).owner (contracts/libs/BEP20.sol#121) shadows:
- Ownable.owner() (@openzeppelin/contracts/access/Ownable.sol#35-37) (function)
BEP20._approve(address,address,uint256).owner (contracts/libs/BEP20.sol#280) shadows:
- Ownable.owner() (@openzeppelin/contracts/access/Ownable.sol#35-37) (function)
Rename the local variables that shadow another component.

Additional information: link

VikingToken.delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32) (contracts/VikingToken.sol#78-119) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now <= expiry,TOKEN::delegateBySig: signature expired) (contracts/VikingToken.sol#117)
Avoid relying on block.timestamp.

Additional information: link

VikingToken.getChainId() (contracts/VikingToken.sol#237-241) uses assembly
- INLINE ASM (contracts/VikingToken.sol#239)
Do not use evm assembly.

Additional information: link

Different versions of Solidity is used:
- Version used: ['0.6.12', '>=0.4.0', '>=0.6.0<0.8.0', '>=0.6.4']
- >=0.6.0<0.8.0 (@openzeppelin/contracts/GSN/Context.sol#3)
- >=0.6.0<0.8.0 (@openzeppelin/contracts/access/Ownable.sol#3)
- >=0.6.0<0.8.0 (@openzeppelin/contracts/math/SafeMath.sol#3)
- 0.6.12 (contracts/VikingToken.sol#1)
- >=0.4.0 (contracts/libs/BEP20.sol#3)
- >=0.6.4 (contracts/libs/IBEP20.sol#1)
Use one Solidity version.

Additional information: link

BEP20._burn(address,uint256) (contracts/libs/BEP20.sol#259-265) is never used and should be removed
BEP20._burnFrom(address,uint256) (contracts/libs/BEP20.sol#294-297) is never used and should be removed
Context._msgData() (@openzeppelin/contracts/GSN/Context.sol#20-23) is never used and should be removed
SafeMath.div(uint256,uint256) (@openzeppelin/contracts/math/SafeMath.sol#103-105) is never used and should be removed
SafeMath.div(uint256,uint256,string) (@openzeppelin/contracts/math/SafeMath.sol#119-125) is never used and should be removed
SafeMath.mod(uint256,uint256) (@openzeppelin/contracts/math/SafeMath.sol#139-141) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (@openzeppelin/contracts/math/SafeMath.sol#155-158) is never used and should be removed
SafeMath.mul(uint256,uint256) (@openzeppelin/contracts/math/SafeMath.sol#77-89) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version>=0.6.0<0.8.0 (@openzeppelin/contracts/GSN/Context.sol#3) is too complex
Pragma version>=0.6.0<0.8.0 (@openzeppelin/contracts/access/Ownable.sol#3) is too complex
Pragma version>=0.6.0<0.8.0 (@openzeppelin/contracts/math/SafeMath.sol#3) is too complex
Pragma version>=0.4.0 (contracts/libs/BEP20.sol#3) allows old versions
Pragma version>=0.6.4 (contracts/libs/IBEP20.sol#1) allows old versions
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Parameter VikingToken.mint(address,uint256)._to (contracts/VikingToken.sol#8) is not in mixedCase
Parameter VikingToken.mint(address,uint256)._amount (contracts/VikingToken.sol#8) is not in mixedCase
Variable VikingToken._delegates (contracts/VikingToken.sol#20) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (@openzeppelin/contracts/GSN/Context.sol#21)" inContext (@openzeppelin/contracts/GSN/Context.sol#15-24)
Remove redundant statements if they congest code but offer no value.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (@openzeppelin/contracts/access/Ownable.sol#54-57)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (@openzeppelin/contracts/access/Ownable.sol#63-67)
mint(address,uint256) should be declared external:
- VikingToken.mint(address,uint256) (contracts/VikingToken.sol#8-11)
symbol() should be declared external:
- BEP20.symbol() (contracts/libs/BEP20.sol#80-82)
decimals() should be declared external:
- BEP20.decimals() (contracts/libs/BEP20.sol#87-89)
totalSupply() should be declared external:
- BEP20.totalSupply() (contracts/libs/BEP20.sol#94-96)
transfer(address,uint256) should be declared external:
- BEP20.transfer(address,uint256) (contracts/libs/BEP20.sol#113-116)
allowance(address,address) should be declared external:
- BEP20.allowance(address,address) (contracts/libs/BEP20.sol#121-123)
approve(address,uint256) should be declared external:
- BEP20.approve(address,uint256) (contracts/libs/BEP20.sol#132-135)
transferFrom(address,address,uint256) should be declared external:
- BEP20.transferFrom(address,address,uint256) (contracts/libs/BEP20.sol#149-157)
increaseAllowance(address,uint256) should be declared external:
- BEP20.increaseAllowance(address,uint256) (contracts/libs/BEP20.sol#171-174)
decreaseAllowance(address,uint256) should be declared external:
- BEP20.decreaseAllowance(address,uint256) (contracts/libs/BEP20.sol#190-193)
mint(uint256) should be declared external:
- BEP20.mint(uint256) (contracts/libs/BEP20.sol#203-206)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


Token is deployed only at one blockchain


Unable to find Youtube account


Unable to find Discord account


Unable to find whitepaper link on the website


Unable to find token on CoinHunt

Additional information: link


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


Young tokens have high risks of scam / price dump / death


Token has relatively low CoinGecko rank

Price for VIKING

News for VIKING