BitcoinAsset Token Logo

BTA [BitcoinAsset] Token

About BTA

Listings

Token 3 years
CoinGecko 2 years
CoinMarketCap 3 years
[CoinGecko] alert: Bitcoin Asset has migrated to a new contract. Find out more here.
white paper

What Makes Bitcoin Asset Unique?

We follow the high market demand in the field of token transactions that are cheap,fast and have complete facilities and for that very reason we provide very low fees and will be very useful for token developers who want low fees and fast delivery without using more tokens.

Developers are committed to • Provides very low fees and a strong network to support the speed and accuracy of transactions • Users are free to create any tokenization, financial products, and digital assets on BTA protocol. • Provide facility that backed up Bitcoin Asset user and all other developer whom choose us to be their protocol with BTA wallet, Swap and governance system • Users can operate these in a simple UI and tooling ecosystem (user-friendly and great support system) • Provide NFT based chain in BTA protocol for everyone is needed. • Our team will not stop innovating and providing all market’s needs

How Is the BTA Chain Network Secured? BTA chain has an open future because it is Ethereum Virtual Machine (EVM) compatible which makes smart contracts and tokens very simple and easy to implement. almost all smart contracts in the world today use EVM to create tokens or smart contracts, so with this opportunity many tokens can be built through the BTA chain network.

Consensus Mechanism HPoS consensus mechanism : BTAchain has a High-efficiency on Transaction Fee, Transaction rate which reduces transaction pending. It has the capability to accommodate the number of transactions on a large scale. The maximum number of validators supported is 21.

Vision Our vision is to be the world's leading protocol that can provide market needs and keep continuing development to become the most advanced in its class.

We are aware that achieving the goal requires teamwork, both protocol providers, token developers, and the token community in the world. Therefore the synergy that has been created must get beneficial mutually, starts from the point of view of price, quality, and convenience, and user satisfaction.

Laser Scorebeta Last Audit: 19 April 2022

report
Token seems to be (relatively) fine. It still become a scam, but probability is moderate.

Anti-Scam

Links


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

BitcoinAsset.sendFee(uint256) (#271-274) sends eth to arbitrary user
Dangerous calls:
- _reserverAddress.transfer(amount) (#272)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BitcoinAsset._transfer(address,address,uint256) (#215-254):
External calls:
- swapTokensForEth(contractTokenBalance) (#224)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#261-267)
External calls sending eth:
- sendFee(address(this).balance) (#228)
- _reserverAddress.transfer(amount) (#272)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#253)
- _rOwned[address(this)] = _rOwned[address(this)].add(rTeam) (#311)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#300)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#301)
- _tokenTransfer(from,to,amount) (#253)
- _rTotal = _rTotal.sub(rFee) (#315)
Apply the check-effects-interactions pattern.

Additional information: link

BitcoinAsset.rescueForeignTokens(address,address,uint256) (#281-284) ignores return value by Token(_tokenAddr).transfer(_to,_amount) (#283)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Combination 2: Unchecked transfer + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Contract ownership is semi-renounced (passed to a contract)

BitcoinAsset.allowance(address,address).owner (#186) shadows:
- Ownable.owner() (#92-94) (function)
BitcoinAsset._approve(address,address,uint256).owner (#207) shadows:
- Ownable.owner() (#92-94) (function)
Rename the local variables that shadow another component.

Additional information: link

Ownable.constructor().msgSender (#88) lacks a zero-check on :
- _owner = msgSender (#89)
Ownable.transferOwnership(address).newOwner (#104) lacks a zero-check on :
- _owner = newOwner (#106)
BitcoinAsset.constructor(address,address).feeAddress (#144) lacks a zero-check on :
- _reserverAddress = feeAddress (#152)
BitcoinAsset.setNewReserverAddress(address).markt (#287) lacks a zero-check on :
- _reserverAddress = markt (#289)
Check that the address is not zero.

Additional information: link

Reentrancy in BitcoinAsset._transfer(address,address,uint256) (#215-254):
External calls:
- swapTokensForEth(contractTokenBalance) (#224)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#261-267)
External calls sending eth:
- sendFee(address(this).balance) (#228)
- _reserverAddress.transfer(amount) (#272)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#253)
- _tFeeTotal = _tFeeTotal.add(tFee) (#316)
- _taxFee = _taxBuySell (#233)
- _taxFee = _taxBuySell (#237)
- _taxFee = 0 (#241)
- _taxFee = 0 (#245)
- _taxFee = 0 (#249)
Reentrancy in BitcoinAsset.constructor(address,address) (#144-159):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#149-150)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#154)
- _isExcludedFromFee[address(this)] = true (#155)
- _isExcludedFromFee[_reserverAddress] = true (#156)
- _reserverAddress = feeAddress (#152)
Reentrancy in BitcoinAsset.transferFrom(address,address,uint256) (#195-199):
External calls:
- _transfer(sender,recipient,amount) (#196)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#261-267)
External calls sending eth:
- _transfer(sender,recipient,amount) (#196)
- _reserverAddress.transfer(amount) (#272)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#197)
- _allowances[owner][spender] = amount (#210)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BitcoinAsset._transfer(address,address,uint256) (#215-254):
External calls:
- swapTokensForEth(contractTokenBalance) (#224)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#261-267)
Event emitted after the call(s):
- swapFeeTokenToEth(contractTokenBalance) (#225)
Reentrancy in BitcoinAsset._transfer(address,address,uint256) (#215-254):
External calls:
- swapTokensForEth(contractTokenBalance) (#224)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#261-267)
External calls sending eth:
- sendFee(address(this).balance) (#228)
- _reserverAddress.transfer(amount) (#272)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#305)
- _tokenTransfer(from,to,amount) (#253)
- feeRescued(_reserverAddress,amount) (#273)
- sendFee(address(this).balance) (#228)
Reentrancy in BitcoinAsset.constructor(address,address) (#144-159):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#149-150)
Event emitted after the call(s):
- Transfer(address(0x0000000000000000000000000000000000000000),_msgSender(),_tTotal) (#158)
Reentrancy in BitcoinAsset.transferFrom(address,address,uint256) (#195-199):
External calls:
- _transfer(sender,recipient,amount) (#196)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#261-267)
External calls sending eth:
- _transfer(sender,recipient,amount) (#196)
- _reserverAddress.transfer(amount) (#272)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#211)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#197)
Apply the check-effects-interactions pattern.

Additional information: link

solc-0.8.13 is not recommended for deployment
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

Function IUniswapV2Router02.WETH() (#34) is not in mixedCase
Event BitcoinAssetswapFeeTokenToEth(uint256) (#214) is not in CapWords
Event BitcoinAssetfeeRescued(address,uint256) (#270) is not in CapWords
Event BitcoinAssettokensRescued(address,address,uint256) (#280) is not in CapWords
Event BitcoinAssetreserverAddressUpdated(address,address) (#286) is not in CapWords
Parameter BitcoinAsset.rescueForeignTokens(address,address,uint256)._tokenAddr (#281) is not in mixedCase
Parameter BitcoinAsset.rescueForeignTokens(address,address,uint256)._to (#281) is not in mixedCase
Parameter BitcoinAsset.rescueForeignTokens(address,address,uint256)._amount (#281) is not in mixedCase
Parameter BitcoinAsset.setMinSwap(uint256)._amount (#368) is not in mixedCase
Parameter BitcoinAsset.setSwap(bool)._swapEnabled (#373) is not in mixedCase
Constant BitcoinAsset._tTotal (#118) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BitcoinAsset._name (#126) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BitcoinAsset._symbol (#127) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BitcoinAsset._decimals (#128) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.

Additional information: link

Reentrancy in BitcoinAsset._transfer(address,address,uint256) (#215-254):
External calls:
- sendFee(address(this).balance) (#228)
- _reserverAddress.transfer(amount) (#272)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#253)
- _rOwned[address(this)] = _rOwned[address(this)].add(rTeam) (#311)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#300)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#301)
- _tokenTransfer(from,to,amount) (#253)
- _rTotal = _rTotal.sub(rFee) (#315)
- _tokenTransfer(from,to,amount) (#253)
- _tFeeTotal = _tFeeTotal.add(tFee) (#316)
- _taxFee = _taxBuySell (#233)
- _taxFee = _taxBuySell (#237)
- _taxFee = 0 (#241)
- _taxFee = 0 (#245)
- _taxFee = 0 (#249)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#305)
- _tokenTransfer(from,to,amount) (#253)
Reentrancy in BitcoinAsset.sendFee(uint256) (#271-274):
External calls:
- _reserverAddress.transfer(amount) (#272)
Event emitted after the call(s):
- feeRescued(_reserverAddress,amount) (#273)
Reentrancy in BitcoinAsset.transferFrom(address,address,uint256) (#195-199):
External calls:
- _transfer(sender,recipient,amount) (#196)
- _reserverAddress.transfer(amount) (#272)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#197)
- _allowances[owner][spender] = amount (#210)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#211)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#197)
Apply the check-effects-interactions pattern.

Additional information: link

Variable BitcoinAsset._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#339) is too similar to BitcoinAsset._getValues(uint256).tTransferAmount (#322)
Variable BitcoinAsset._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#339) is too similar to BitcoinAsset._getTValues(uint256,uint256,uint256).tTransferAmount (#331)
Variable BitcoinAsset._transferStandard(address,address,uint256).rTransferAmount (#299) is too similar to BitcoinAsset._transferStandard(address,address,uint256).tTransferAmount (#299)
Variable BitcoinAsset._transferStandard(address,address,uint256).rTransferAmount (#299) is too similar to BitcoinAsset._getValues(uint256).tTransferAmount (#322)
Variable BitcoinAsset._transferStandard(address,address,uint256).rTransferAmount (#299) is too similar to BitcoinAsset._getTValues(uint256,uint256,uint256).tTransferAmount (#331)
Variable BitcoinAsset._getValues(uint256).rTransferAmount (#324) is too similar to BitcoinAsset._getValues(uint256).tTransferAmount (#322)
Variable BitcoinAsset._getValues(uint256).rTransferAmount (#324) is too similar to BitcoinAsset._getTValues(uint256,uint256,uint256).tTransferAmount (#331)
Variable BitcoinAsset._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#339) is too similar to BitcoinAsset._transferStandard(address,address,uint256).tTransferAmount (#299)
Variable BitcoinAsset._getValues(uint256).rTransferAmount (#324) is too similar to BitcoinAsset._transferStandard(address,address,uint256).tTransferAmount (#299)
Prevent variables from having similar names.

Additional information: link

BitcoinAsset.constructor(address,address) (#144-159) uses literals with too many digits:
- Transfer(address(0x0000000000000000000000000000000000000000),_msgSender(),_tTotal) (#158)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#85) is never used in BitcoinAsset (#110-383)
BitcoinAsset._tOwned (#113) is never used in BitcoinAsset (#110-383)
Remove unused state variables.

Additional information: link

BitcoinAsset._taxBuySell (#122) should be constant
Ownable._previousOwner (#85) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#99-102)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#104-107)
name() should be declared external:
- BitcoinAsset.name() (#161-163)
symbol() should be declared external:
- BitcoinAsset.symbol() (#165-167)
decimals() should be declared external:
- BitcoinAsset.decimals() (#169-171)
totalSupply() should be declared external:
- BitcoinAsset.totalSupply() (#173-175)
transfer(address,uint256) should be declared external:
- BitcoinAsset.transfer(address,uint256) (#181-184)
allowance(address,address) should be declared external:
- BitcoinAsset.allowance(address,address) (#186-188)
approve(address,uint256) should be declared external:
- BitcoinAsset.approve(address,uint256) (#190-193)
transferFrom(address,address,uint256) should be declared external:
- BitcoinAsset.transferFrom(address,address,uint256) (#195-199)
rescueForeignTokens(address,address,uint256) should be declared external:
- BitcoinAsset.rescueForeignTokens(address,address,uint256) (#281-284)
setNewReserverAddress(address) should be declared external:
- BitcoinAsset.setNewReserverAddress(address) (#287-291)
setNewRouterAddress(address) should be declared external:
- BitcoinAsset.setNewRouterAddress(address) (#293-296)
setMinSwap(uint256) should be declared external:
- BitcoinAsset.setMinSwap(uint256) (#368-371)
setSwap(bool) should be declared external:
- BitcoinAsset.setSwap(bool) (#373-375)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- BitcoinAsset.excludeMultipleAccountsFromFees(address[],bool) (#377-381)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token is deployed only at one blockchain

Contract has 3% buy tax and 3% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Number of Binance Smart Chain (BSC) token holders is low.


Token has only one trading pair

No disclosed threats


Unable to find token contract audit


Unable to find audit link on the website


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


Alexa traffic rank is relatively low

Additional information: link


Token has relatively low CoinMarketCap rank


Token has relatively low CoinGecko rank

Price for BTA

News for BTA