Bondly Token Logo

BONDLY Token (2)

About BONDLY

Listings

Token 2 years
CoinGecko 3 years
CoinMarketCap 3 years
[CoinGecko] alert: Bondly has rebranded to Forj. Read more at: https://www.animocabrands.com/bondly-finance-announces-strategic-rebrand-to-forj

About Forj
A subsidiary of Animoca Brands, Forj delivers leading Web3 products and technologies that create unique fan experiences for creators. A truly end-to-end solution, Forj is the next frontier of fan engagement through its use of NFTs, metaverse protocols, and blockchain tech to bring fans closer to their favorite creator brands in Music, Entertainment, Gaming and beyond. With major partnerships including influencer Logan Paul, Grammy-nominated musician Lewis Capaldi, and leading creator platform Spring, Forj has an enviable track-record of success in the sector.

Forj-owned brands include metaverse infrastructure project Metaprints and leading GameFi project PolkaPets.

For more information visit www.forj.network

Social

Laser Scorebeta Last Audit: 30 May 2022

report
Token seems to be legit.


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

AnyswapV5ERC20.depositWithTransferPermit(address,uint256,uint256,uint8,bytes32,bytes32,address) (#319-322) ignores return value by IERC20(underlying).transferWithPermit(target,address(this),value,deadline,v,r,s) (#320)
Ensure that all the return values of the function calls are used.

Additional information: link

AnyswapV5ERC20.setMinter(address)._auth (#187) lacks a zero-check on :
- pendingMinter = _auth (#188)
AnyswapV5ERC20.setVault(address)._vault (#192) lacks a zero-check on :
- pendingVault = _vault (#193)
AnyswapV5ERC20.init(string,string,uint8,address,address,bool)._underlying (#278) lacks a zero-check on :
- underlying = _underlying (#285)
Check that the address is not zero.

Additional information: link

Reentrancy in AnyswapV5ERC20.deposit() (#324-328):
External calls:
- IERC20(underlying).safeTransferFrom(msg.sender,address(this),_amount) (#326)
State variables written after the call(s):
- _deposit(_amount,msg.sender) (#327)
- _totalSupply = newTotalSupply (#388)
- _deposit(_amount,msg.sender) (#327)
- balanceOf[account] += amount (#389)
Reentrancy in AnyswapV5ERC20.deposit(uint256) (#330-333):
External calls:
- IERC20(underlying).safeTransferFrom(msg.sender,address(this),amount) (#331)
State variables written after the call(s):
- _deposit(amount,msg.sender) (#332)
- _totalSupply = newTotalSupply (#388)
- _deposit(amount,msg.sender) (#332)
- balanceOf[account] += amount (#389)
Reentrancy in AnyswapV5ERC20.deposit(uint256,address) (#335-338):
External calls:
- IERC20(underlying).safeTransferFrom(msg.sender,address(this),amount) (#336)
State variables written after the call(s):
- _deposit(amount,to) (#337)
- _totalSupply = newTotalSupply (#388)
- _deposit(amount,to) (#337)
- balanceOf[account] += amount (#389)
Reentrancy in AnyswapV5ERC20.depositWithPermit(address,uint256,uint256,uint8,bytes32,bytes32,address) (#313-317):
External calls:
- IERC20(underlying).permit(target,address(this),value,deadline,v,r,s) (#314)
- IERC20(underlying).safeTransferFrom(target,address(this),value) (#315)
State variables written after the call(s):
- _deposit(value,to) (#316)
- _totalSupply = newTotalSupply (#388)
- _deposit(value,to) (#316)
- balanceOf[account] += amount (#389)
Reentrancy in AnyswapV5ERC20.depositWithTransferPermit(address,uint256,uint256,uint8,bytes32,bytes32,address) (#319-322):
External calls:
- IERC20(underlying).transferWithPermit(target,address(this),value,deadline,v,r,s) (#320)
State variables written after the call(s):
- _deposit(value,to) (#321)
- _totalSupply = newTotalSupply (#388)
- _deposit(value,to) (#321)
- balanceOf[account] += amount (#389)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in AnyswapV5ERC20.deposit() (#324-328):
External calls:
- IERC20(underlying).safeTransferFrom(msg.sender,address(this),_amount) (#326)
Event emitted after the call(s):
- Transfer(address(0),account,amount) (#390)
- _deposit(_amount,msg.sender) (#327)
Reentrancy in AnyswapV5ERC20.deposit(uint256) (#330-333):
External calls:
- IERC20(underlying).safeTransferFrom(msg.sender,address(this),amount) (#331)
Event emitted after the call(s):
- Transfer(address(0),account,amount) (#390)
- _deposit(amount,msg.sender) (#332)
Reentrancy in AnyswapV5ERC20.deposit(uint256,address) (#335-338):
External calls:
- IERC20(underlying).safeTransferFrom(msg.sender,address(this),amount) (#336)
Event emitted after the call(s):
- Transfer(address(0),account,amount) (#390)
- _deposit(amount,to) (#337)
Reentrancy in AnyswapV5ERC20.depositWithPermit(address,uint256,uint256,uint8,bytes32,bytes32,address) (#313-317):
External calls:
- IERC20(underlying).permit(target,address(this),value,deadline,v,r,s) (#314)
- IERC20(underlying).safeTransferFrom(target,address(this),value) (#315)
Event emitted after the call(s):
- Transfer(address(0),account,amount) (#390)
- _deposit(value,to) (#316)
Reentrancy in AnyswapV5ERC20.depositWithTransferPermit(address,uint256,uint256,uint8,bytes32,bytes32,address) (#319-322):
External calls:
- IERC20(underlying).transferWithPermit(target,address(this),value,deadline,v,r,s) (#320)
Event emitted after the call(s):
- Transfer(address(0),account,amount) (#390)
- _deposit(value,to) (#321)
Apply the check-effects-interactions pattern.

Additional information: link

AnyswapV5ERC20.mpc() (#176-181) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp >= delayVault (#177)
AnyswapV5ERC20.applyVault() (#197-200) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(block.timestamp >= delayVault) (#198)
AnyswapV5ERC20.applyMinter() (#202-206) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(block.timestamp >= delayMinter) (#203)
AnyswapV5ERC20.permit(address,address,uint256,uint256,uint8,bytes32,bytes32) (#448-465) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp <= deadline,AnyswapV3ERC20: Expired permit) (#449)
AnyswapV5ERC20.transferWithPermit(address,address,uint256,uint256,uint8,bytes32,bytes32) (#467-491) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp <= deadline,AnyswapV3ERC20: Expired permit) (#468)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#86-92) uses assembly
- INLINE ASM (#90)
AnyswapV5ERC20.init(string,string,uint8,address,address,bool) (#278-306) uses assembly
- INLINE ASM (#298)
Do not use evm assembly.

Additional information: link

SafeERC20.safeApprove(IERC20,address,uint256) (#106-111) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in SafeERC20.callOptionalReturn(IERC20,bytes) (#112-123):
- (success,returndata) = address(token).call(data) (#116)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter AnyswapV5ERC20.setMinter(address)._auth (#187) is not in mixedCase
Parameter AnyswapV5ERC20.setVault(address)._vault (#192) is not in mixedCase
Parameter AnyswapV5ERC20.revokeMinter(address)._auth (#209) is not in mixedCase
Function AnyswapV5ERC20.Swapin(bytes32,address,uint256) (#249-254) is not in mixedCase
Function AnyswapV5ERC20.Swapout(uint256,address) (#256-262) is not in mixedCase
Parameter AnyswapV5ERC20.init(string,string,uint8,address,address,bool)._name (#278) is not in mixedCase
Parameter AnyswapV5ERC20.init(string,string,uint8,address,address,bool)._symbol (#278) is not in mixedCase
Parameter AnyswapV5ERC20.init(string,string,uint8,address,address,bool)._decimals (#278) is not in mixedCase
Parameter AnyswapV5ERC20.init(string,string,uint8,address,address,bool)._underlying (#278) is not in mixedCase
Parameter AnyswapV5ERC20.init(string,string,uint8,address,address,bool)._vault (#278) is not in mixedCase
Parameter AnyswapV5ERC20.init(string,string,uint8,address,address,bool)._vaultOnly (#278) is not in mixedCase
Variable AnyswapV5ERC20.DOMAIN_SEPARATOR (#136) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

AnyswapV5ERC20.delay (#146) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

owner() should be declared external:
- AnyswapV5ERC20.owner() (#172-174)
changeMPCOwner(address) should be declared external:
- AnyswapV5ERC20.changeMPCOwner(address) (#230-236)
Swapin(bytes32,address,uint256) should be declared external:
- AnyswapV5ERC20.Swapin(bytes32,address,uint256) (#249-254)
Swapout(uint256,address) should be declared external:
- AnyswapV5ERC20.Swapout(uint256,address) (#256-262)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:
No disclosed threats


Unable to find Youtube account


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find Telegram link on the website


Unable to find Twitter link on the website


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for BONDLY

News for BONDLY