Wednesday, September 27, 2023
  • Login
EthozEdge
No Result
View All Result
  • Home
  • ETHO News
  • EVM News
    • Avalanche Network
    • Ethereum
    • Fantom Opera Chain
    • Harmony Chain
    • Huobi Eco Chain
    • Polygon Chain
  • Crypto News
    • Altcoin News
    • Bitcoin
    • Blockchain
    • Crypto Exchanges
    • Crypto Mining
    • Crypto Regulation News
    • DeFi
    • NFT
    • Metaverse
    • Scam News
    • Web 3.0
Cryptocurrency Marketcap
  • Home
  • ETHO News
  • EVM News
    • Avalanche Network
    • Ethereum
    • Fantom Opera Chain
    • Harmony Chain
    • Huobi Eco Chain
    • Polygon Chain
  • Crypto News
    • Altcoin News
    • Bitcoin
    • Blockchain
    • Crypto Exchanges
    • Crypto Mining
    • Crypto Regulation News
    • DeFi
    • NFT
    • Metaverse
    • Scam News
    • Web 3.0
No Result
View All Result
EthozEdge
No Result
View All Result
Home Crypto News Blockchain

Ethereum Smart Contract Best Practices

by ethozedge
May 13, 2022
in Blockchain
Reading Time: 8 mins read
A A
0
Share on FacebookShare on Twitter


Smart contracts have emerged as one of the most noticeable driving forces in the crypto landscape. They have facilitated the introduction of a completely new breed of decentralized applications with autonomous operating models. Now, the most common platform for creating and deploying smart contracts is Ethereum. Many of you seeking the top entries in Ethereum smart contract best practices must know about Ethereum smart contracts. 

You can think of it as basically another account type that you can run like any other program with an autonomous codebase and data repository. Ethereum smart contracts stay on a specific address on the overall Ethereum blockchain.  What are the best practices for configuring and using Ethereum smart contracts? The following post will offer you a detailed answer with the outline of best practices for using Ethereum smart contracts.

Excited to learn the basic and advanced concepts of ethereum technology? Enroll Now in The Complete Ethereum Technology Course 

What are Ethereum Smart Contracts?

The Ethereum smart contracts are not different from regular smart contracts. In this case, the smart contracts work as a form of Ethereum account, where they can hold the balance and transfer transactions across the network. On top of it, the best practices for Ethereum smart contracts also focus on the highlight that they must be deployed to a network rather than staying under a user’s control. 

Ethereum smart contracts work according to the specified programming, while users can submit transactions by using the desired smart contract functionalities. Smart contracts can help in defining rules as well as enforcing them. In addition, you must also note the fact that all the interactions with a smart contract are immutable. However, the complexity of blockchain ecosystems like Ethereum goes through frequent changes with the introduction of best practices.

If you are new to smart contracts, you might not be sure of its capability. Check the detailed  guide now on Smart Contract Use Cases  

Common Best Practices for Using Ethereum Smart Contracts

The first answer to “what are some best practices for Ethereum smart contracts” would obviously point at the general practices. You would need the best practices to ensure the safety of the smart contract from different vulnerabilities and bugs. In addition, the general practices for Ethereum smart contracts also depend considerably on the mindset of smart contract developers. On top of it, the methods for building the smart contract also play a crucial role in determining the common best practices for Ethereum-based smart contracts. Here is an outline of the common Ethereum smart contract best practices you must watch out for in the crypto space. 

Ethereum smart contract best practices

No matter how odd this may seem, you must always prepare for failure with smart contracts. You must prepare to take on the issues with smart contracts and respond accordingly. For example, you can pause the contract in event of unwarranted scenarios or develop a reliable upgrade strategy for resolving issues and facilitating improvements. 

The next entry among best practices for Ethereum smart contracts refers to the need for caution with rollouts. As a matter of fact, you have better chances of detecting and resolving any bugs prior to the production phase. You can ensure cautious rollouts through in-depth testing of contracts or rolling out smart contracts in subsequent phases. 

The list of security best practices in the case of Ethereum smart contracts would also draw attention to the need for simplicity. You must maintain simple Ethereum smart contracts with expectations for many prominent errors. Developers can try maintaining simple, smart contracts by creating a simple contract logic. At the same time, developers can try other options, such as converting code into different modules. You can also try reusable code or tooling alongside emphasizing transparency over performance. 

Get familiar with the terms related to ethereum with Ethereum Flashcards

  • Monitor Latest Developments

The outline of Ethereum smart contract best practices also points to the necessity for monitoring the latest developments in Ethereum. Developers must stay updated with the latest changes and developments in the security or general infrastructure of Ethereum smart contracts. For example, developers must check the smart contracts frequently to identify new errors and bugs. Most important of all, developers must also prepare to use new and innovative security techniques in their smart contracts. 

  • Special Focus on Blockchain Traits

Developers working on Ethereum smart contract development must also take note of certain crucial blockchain traits. For example, the best practices for Ethereum smart contracts imply caution for external calls. In addition, developers must also notice the gas costs and block gas limitations with the smart contract. Furthermore, developers must also consider the fact that timestamps for a blockchain can be inaccurate.

When someone asks you, “what are some best practices for Ethereum smart contracts” you must draw their attention to the basic trade-offs. If you want security, then you must compromise a bit on the structure and vice versa. For example, are you prepared for reuse and duplication in contracts? Similarly, you need to define the choice between monolithic and module-based contracts or flexible and rigid contracts. The trade-offs depend on your requirements, and you must always look for simplicity to have better assurance of security.

Want to learn blockchain technology in detail? Enroll Now in Certified Enterprise Blockchain Professional (CEBP) Course

Security Practices for Solidity Smart Contracts 

The discussion around smart contract best practices would also draw the focus towards Solidity best practices for Ethereum smart contracts developers must follow. Solidity is the most popular object-oriented programming language, tailored for writing smart contracts. Generally, Solidity-based smart contracts have been tailored for working on the Ethereum Virtual Machine or EVM. Here are some of the best practices for ensuring the security of smart contracts on Ethereum programmed in Solidity.

Solidity best practices for Ethereum smart contracts

Solidity triggers an asset safeguard in event of the failure of an assertation. Developers can use the assert() function to ensure a fixed ratio for issuing tokens with respect to Ether in a token issuance contract. 

You should also look for best practices for Ethereum smart contracts with Solidity in the safe use of convenience functions. For example, assert() helps in verifying variants and testing internal errors. On the other hand, require() can validate the return values of different calls while ensuring the validity of conditions. 

  • Round the Integer Divisions

One of the common best practices in programming Ethereum smart contracts with Solidity refers to rounding the integer divisions. You must round down the integer divisions to the nearest integer. 

The outline of Ethereum smart contract best practices in Solidity also emphasizes on careful use of modifiers. Generally, the code in the modifier takes the first precedence over the function body in execution. As a result, modifiers can disrupt the interaction pattern of the smart contract in event of any state changes or external calls. Therefore, developers must use modifiers only for replacing the duplication condition checks across different functions. 

Want to know the solidity smart contract security best practices in detail? Check the detailed guide Now on Solidity Smart Contract Security Best Practices

  • Abstract Contract and Interfaces Trade-offs

Interfaces offer a flexible approach for contract design prior to implementation, albeit with setbacks. For example, interfaces have limited storage access and restrictions on inheritance from different interfaces. In addition, interfaces cannot support the implementation of any functions, thereby making abstract contracts a practical choice. 

You should also focus on Solidity best practices for Ethereum smart contracts, like the simplicity of callback functions. 

  • Data Length in a Fallback Function

Developers must also emphasize on data length associated with the fallback functions. When you want to use a fallback function only for documentation of Ether receipts, you must verify the data is empty. 

The next striking addition among answers to “what are some best practices for Ethereum smart contracts” would refer to explicit marking. For example, developers must use a payable modifier for all functions receiving Ether. In addition, developers must also label functions to ensure better visibility for state variables and private functions.            

The Pragmas basically refers to the compiler variant intended by the original authors of the contract. Best practices for Ethereum smart contracts suggest the deployment of contracts with relevant compiler versions and flags. Safeguarding the Pragmas helps you verify that you don’t deploy the contracts with different compilers. 

  • Monitoring Contract Activity

You can look for answers in Solidity best practices for Ethereum smart contracts with a dedicated focus on monitoring contract activity. Developers must also look after the contract’s transaction after deploying it. For example, events can offer a productive tool for documenting everything that transpires in a smart contract. 

  • Shadowing “Built-ins”

The innovative entry among Ethereum smart contract best practices focuses on shadowing “built-ins” in the smart contract. You can use shadowing as an effective tool for overriding the functionalities of the contract.

The most notable entry among best practices for Ethereum-based smart contracts would refer to avoiding tx.origin. Avoid tx.origin as a choice for authorization because it can restrict the interoperability. 

Excited to know about the fundamentals of Ethereum Development too? Enroll in Ethereum Development Fundamentals Course Now.

Bottom Line 

The final highlight regarding the best practices for Ethereum smart contracts suggests that security is one of the first priorities. Smart contracts are tailored for the autonomous execution of agreements according to desired conditions at the desired time. However, the continuously changing technology trends and the evolving requirements of smart contracts have been responsible for introducing new norms in smart contract development. 

At the same time, you can also notice large-scale improvements in the Ethereum ecosystem. The best practices for creating and securing Ethereum smart contracts can also focus on token implementation and documentation procedures. Keep exploring to learn more about smart contracts and their role in the growing popularity of decentralized technologies.

Join our annual/monthly membership program and get unlimited access to 25+ professional courses and 55+ on-demand webinars.





Source link

Tags: bitcoin newsContractcrypto analysiscrypto newsEthereumEthoz EdgeLatest bitcoin newslatest crypto newsPracticesSmart
Share76Tweet47

Related Posts

Announcement – Certified Web3 Hacker (CW3H)™ Certification Launched

by ethozedge
September 26, 2023
0

New technological advancements have always led to new risks and challenges, and as always, security is at the top of...

Spatial computing is the next frontier in airline flight safety

by ethozedge
September 26, 2023
0

Flight delays are a frustrating aspect of flying. It’s a situation most can relate to: sitting in the terminal or...

BNB Chain and MetaMask Resolve Glitch Affecting opBNB Gas Fees

by ethozedge
September 25, 2023
0

Key Takeaways BNB Chain and MetaMask have resolved a glitch that made opBNB's gas fees appear unusually high. The issue...

What are Fractionalized NFTs and how do they actually work- PrimaFelicitas

by ethozedge
September 25, 2023
0

With the rising popularity of Fractionalized NFT collections, their floor prices also increase simultaneously making a barrier for crypto art...

NYDIG Report: Bitcoin Volatility Expected Around ETF Dates, Mt Gox Delays, and Fed Rate Impacts

by ethozedge
September 23, 2023
0

Key ETF Dates Stir Volatility Expectations in Options Market The options market is signaling potential significant price movements in bitcoin...

Load More
  • Trending
  • Comments
  • Latest

🔴 Bank of America Bets on Crypto

April 11, 2022

Pomelo Launches Family Credit Cards to Combine Credit and International Money Transfer

August 16, 2022

How to Add Polygon (MATIC) to Your MetaMask Wallet

May 28, 2022

The Sandbox Price Prediction 2022-2030: HODL or DUMP?

May 25, 2022

Successful Beta Service launch of SOMESING, ‘My Hand-Carry Studio Karaoke App’

0

At least 54 apes were stolen in BAYC Instagram hack

0

Binance Introduces New Crypto Card for Ukrainian Refugees

0

55,000 Meta Cricket League NFTs sell out in nine minutes

0

XRP Bucks The Trend As Institutional Funds Inflows Spikes 700%

September 26, 2023

Christo and Jeanne-Claude’s foundation begins to define its scope and goals, including executing the artists’ final, gargantuan project

September 26, 2023

Pantera Capital Says One Ethereum Layer-2 ‘High on the List’ of New Crypto Opportunities

September 26, 2023

Bitcoin Price (BTC) Barely Holds $26K as Interest Rate Surge Continues

September 26, 2023
Facebook Twitter LinkedIn Tumblr RSS
EthozEdge

Find the latest Bitcoin, Ethereum, blockchain, crypto, Business, Fintech News, interviews, and price analysis at EthozEdge

CATEGORIES

  • Altcoin News
  • Avalanche Network
  • Binance Smart Chain
  • Bitcoin
  • Blockchain
  • Crypto Exchanges
  • Crypto Mining
  • Crypto Regulation News
  • DeFi
  • Ethereum
  • EVM News
  • Fantom Opera Chain
  • Harmony Chain
  • Huobi Eco Chain
  • Metaverse
  • NFT
  • Polygon Chain
  • Scam News
  • Web 3.0
  • XDai Chain

SITE MAP

  • Disclaimer
  • Privacy Policy
  • DMCA
  • Cookie Privacy Policy
  • Terms and Conditions
  • Contact us

Copyright © 2022 - EthozEdge.
EthozEdge The Crypto is not responsible for the content of external sites.

No Result
View All Result
  • Home
  • ETHO News
  • EVM News
    • Avalanche Network
    • Ethereum
    • Fantom Opera Chain
    • Harmony Chain
    • Huobi Eco Chain
    • Polygon Chain
  • Crypto News
    • Altcoin News
    • Bitcoin
    • Blockchain
    • Crypto Exchanges
    • Crypto Mining
    • Crypto Regulation News
    • DeFi
    • NFT
    • Metaverse
    • Scam News
    • Web 3.0

Copyright © 2022 - EthozEdge.
EthozEdge The Crypto is not responsible for the content of external sites.

Welcome Back!

Login to your account below

Forgotten Password?

Retrieve your password

Please enter your username or email address to reset your password.

Log In
  • JDBJDB(JDB)$0.021575-0.61%
  • bitcoinBitcoin(BTC)$26,249.00-0.17%
  • ethereumEthereum(ETH)$1,591.930.05%
  • USDEXUSDEX(USDEX)$1.07-0.47%
  • tetherTether(USDT)$1.00-0.04%
  • binancecoinBNB(BNB)$212.320.37%
  • rippleXRP(XRP)$0.50-0.59%
  • usd-coinUSDC(USDC)$1.00-0.04%
  • staked-etherLido Staked Ether(STETH)$1,592.000.21%
  • cardanoCardano(ADA)$0.245221-0.54%
  • dogecoinDogecoin(DOGE)$0.060673-0.62%
  • solanaSolana(SOL)$19.07-1.57%
  • tronTRON(TRX)$0.0850650.52%
  • ToncoinToncoin(TON)$2.13-1.09%
  • Wrapped stETHWrapped stETH(WSTETH)$1,865.020.37%
  • polkadotPolkadot(DOT)$4.00-2.00%
  • matic-networkPolygon(MATIC)$0.51-2.22%
  • litecoinLitecoin(LTC)$63.80-1.22%
  • shiba-inuShiba Inu(SHIB)$0.000007-0.82%
  • wrapped-bitcoinWrapped Bitcoin(WBTC)$26,222.00-0.23%
  • bitcoin-cashBitcoin Cash(BCH)$215.661.69%
  • chainlinkChainlink(LINK)$7.28-2.98%
  • daiDai(DAI)$1.00-0.04%
  • true-usdTrueUSD(TUSD)$1.00-0.10%
  • leo-tokenLEO Token(LEO)$3.66-3.21%
  • uniswapUniswap(UNI)$4.300.09%
  • avalanche-2Avalanche(AVAX)$9.060.70%
  • stellarStellar(XLM)$0.111796-0.65%
  • moneroMonero(XMR)$144.570.44%
  • okbOKB(OKB)$43.03-0.56%
  • Aerarium FiAerarium Fi(AERA)$7.15-13.10%
  • binance-usdBUSD(BUSD)$1.00-0.23%
  • BSCEXBSCEX(BSCX)$237.310.49%
  • ethereum-classicEthereum Classic(ETC)$15.11-0.71%
  • cosmosCosmos Hub(ATOM)$6.97-1.35%
  • hedera-hashgraphHedera(HBAR)$0.049106-2.44%
  • GGTKNGGTKN(GGTKN)$0.1121310.76%
  • filecoinFilecoin(FIL)$3.19-0.77%
  • internet-computerInternet Computer(ICP)$2.96-1.40%
  • crypto-com-chainCronos(CRO)$0.050087-0.66%
  • lido-daoLido DAO(LDO)$1.46-0.85%
  • makerMaker(MKR)$1,426.097.48%
  • quant-networkQuant(QNT)$86.74-1.40%
  • MantleMantle(MNT)$0.389700-0.68%
  • AptosAptos(APT)$5.28-6.21%
  • vechainVeChain(VET)$0.016535-0.97%
  • ArbitrumArbitrum(ARB)$0.820.81%
  • optimismOptimism(OP)$1.292.04%
  • nearNEAR Protocol(NEAR)$1.08-2.48%
  • EdgecoinEdgecoin(EDGT)$1.00-0.03%
  • KaspaKaspa(KAS)$0.0469390.88%
  • Rocket Pool ETHRocket Pool ETH(RETH)$1,728.690.30%
  • aaveAave(AAVE)$60.92-1.63%
  • BitDAOBitDAO(BIT)$0.592.96%
  • the-graphThe Graph(GRT)$0.086912-1.60%
  • WhiteBIT CoinWhiteBIT Coin(WBT)$5.21-0.54%
  • algorandAlgorand(ALGO)$0.095119-2.63%
  • usddUSDD(USDD)$1.00-0.03%
  • immutable-xImmutableX(IMX)$0.58-3.53%
  • fraxFrax(FRAX)$1.000.12%
  • xdce-crowd-saleXDC Network(XDC)$0.048154-3.14%
  • havvenSynthetix Network(SNX)$2.000.43%
  • sapphireSapphire(SAPP)$0.7035.32%
  • blockstackStacks(STX)$0.455900-2.23%
  • theta-tokenTheta Network(THETA)$0.640.51%
  • elrond-erd-2MultiversX(EGLD)$24.42-1.44%
  • radixRadix(XRD)$0.0618340.91%
  • eosEOS(EOS)$0.56-0.93%
  • Bitget TokenBitget Token(BGB)$0.448289-0.08%
  • the-sandboxThe Sandbox(SAND)$0.3027930.50%
  • tezosTezos(XTZ)$0.660.05%
  • CloutContractsCloutContracts(CCS)$52.461,000.00%
  • injective-protocolInjective(INJ)$7.241.29%
  • bitcoin-cash-svBitcoin SV(BSV)$31.000.35%
  • axie-infinityAxie Infinity(AXS)$4.51-3.33%
  • render-tokenRender(RNDR)$1.480.15%
  • decentralandDecentraland(MANA)$0.298088-0.06%
  • gatechain-tokenGate(GT)$3.87-0.14%
  • fantomFantom(FTM)$0.187972-1.08%
  • thorchainTHORChain(RUNE)$1.741.94%
  • marumaruNFTmarumaruNFT(MARU)$0.25242622.62%
  • neoNEO(NEO)$7.19-1.07%
  • kavaKava(KAVA)$0.62-0.60%
  • paxos-standardPax Dollar(USDP)$1.00-0.08%
  • pax-goldPAX Gold(PAXG)$1,898.31-0.50%
  • tether-goldTether Gold(XAUT)$1,903.72-0.66%
  • ecasheCash(XEC)$0.000024-1.44%
  • binaryxBinaryX(BNX)$165.94-5.94%
  • curve-dao-tokenCurve DAO(CRV)$0.530.73%
  • flowFlow(FLOW)$0.441139-1.22%
  • compound-ethercETH(CETH)$31.980.08%
  • Halo CoinHalo Coin(HALO)$0.057352-0.04%
  • convex-crvConvex CRV(CVXCRV)$1.47183.77%
  • frax-shareFrax Share(FXS)$5.913.72%
  • kucoin-sharesKuCoin(KCS)$4.41-1.54%
  • rocket-poolRocket Pool(RPL)$21.60-0.65%
  • Frax EtherFrax Ether(FRXETH)$1,589.310.16%
  • iotaIOTA(MIOTA)$0.148930-1.09%
  • apecoinApeCoin(APE)$1.12-0.70%
  • chilizChiliz(CHZ)$0.057630-0.65%
  • huobi-tokenHuobi(HT)$2.43-0.34%
  • First Digital USDFirst Digital USD(FDUSD)$1.000.09%
  • Tokenize XchangeTokenize Xchange(TKX)$4.740.16%
  • bittorrentBitTorrent(BTT)$0.000000-0.12%
  • mina-protocolMina Protocol(MINA)$0.372307-1.58%
  • casper-networkCasper Network(CSPR)$0.031569-2.78%
  • klay-tokenKlaytn(KLAY)$0.112619-2.78%
  • terra-lunaTerra Luna Classic(LUNC)$0.0000611.46%
  • DogechainDogechain(DC)$0.001787-24.98%
  • galaGALA(GALA)$0.013324-1.88%
  • SuiSui(SUI)$0.437314-1.55%
  • Rollbit CoinRollbit Coin(RLB)$0.103511-2.43%
  • dydxdYdX(DYDX)$1.88-2.43%
  • Coinbase Wrapped Staked ETHCoinbase Wrapped Staked ETH(CBETH)$1,670.690.25%
  • gmxGMX(GMX)$35.722.26%
  • trust-wallet-tokenTrust Wallet(TWT)$0.770.02%
  • nexoNEXO(NEXO)$0.55-3.27%
  • apenftAPENFT(NFT)$0.000000-0.27%
  • WEMIXWEMIX(WEMIX)$0.99-1.91%
  • Nexus MutualNexus Mutual(NXM)$45.750.06%
  • Staked Frax EtherStaked Frax Ether(SFRXETH)$1,682.880.18%
  • dashDash(DASH)$26.56-1.97%
  • CyberHarborCyberHarbor(CHT)$10.12-49.84%
  • gemini-dollarGemini Dollar(GUSD)$1.00-0.11%
  • PepePepe(PEPE)$0.000001-0.43%
  • woo-networkWOO Network(WOO)$0.165763-1.17%
  • zilliqaZilliqa(ZIL)$0.016964-0.15%
  • 1inch1inch(1INCH)$0.2696891.23%
  • safemoonSafeMoon [OLD](SAFEMOON)$0.0000000.05%
  • Shib Original VisionShib Original Vision(SOV)$0.00000012.40%
  • FlareFlare(FLR)$0.0110060.08%
  • arweaveArweave(AR)$4.170.79%
  • compound-governance-tokenCompound(COMP)$39.530.31%
  • liquity-usdLiquity USD(LUSD)$0.990.14%
  • conflux-tokenConflux(CFX)$0.123713-3.20%
  • AstarAstar(ASTR)$0.048597-4.74%
  • IdeaChainIdeaChain(ICH)$4.730.00%
  • ftx-tokenFTX(FTT)$1.89-21.52%
  • gnosisGnosis(GNO)$97.81-0.41%
  • basic-attention-tokenBasic Attention(BAT)$0.168986-1.74%
  • Crypto Gladiator LeagueCrypto Gladiator League(CGL)$0.16194440.57%
  • pancakeswap-tokenPancakeSwap(CAKE)$1.150.08%
  • Utility Web3ShotUtility Web3Shot(UW3S)$0.4725710.00%
  • tomiNettomiNet(TOMI)$3.31-4.98%
  • flex-coinFLEX Coin(FLEX)$2.48357.01%
  • convex-financeConvex Finance(CVX)$3.02-1.53%
  • SafePalSafePal(SFP)$0.56-0.42%
  • compound-usd-coincUSDC(CUSDC)$0.023064-0.01%
  • oec-tokenOKT Chain(OKT)$13.130.85%
  • huobi-btcHuobi BTC(HBTC)$26,157.00-0.24%
  • Manchester City Fan TokenManchester City Fan Token(CITY)$11.87-1.78%
  • chiaChia(XCH)$27.02-0.64%
  • world-mobile-tokenWorld Mobile Token(WMT)$0.2920233.33%
  • celoCelo(CELO)$0.449296-4.13%
  • escoin-tokenEscoin(ELG)$2.66-1.49%
  • illuviumIlluvium(ILV)$38.830.05%
  • nemNEM(XEM)$0.025277-1.20%
  • Bone ShibaSwapBone ShibaSwap(BONE)$0.918.49%
  • Meerkat SharesMeerkat Shares(MSHARE)$11,715.17-5.03%
  • bitcoin-goldBitcoin Gold(BTG)$12.83-0.59%
  • WorldcoinWorldcoin(WLD)$1.69-2.65%
  • compound-usdtcUSDT(CUSDT)$0.0190980.00%
  • qtumQtum(QTUM)$2.13-1.86%
  • fetch-aiFetch.ai(FET)$0.213003-1.91%
  • ecomiECOMI(OMI)$0.000822-1.31%
  • enjincoinEnjin Coin(ENJ)$0.221220-2.63%
  • Staked LunaStaked Luna(STLUNA)$88.35-0.49%
  • tether-eurtEuro Tether(EURT)$1.06-0.32%
  • singularitynetSingularityNET(AGIX)$0.175414-1.88%
  • mx-tokenMX(MX)$2.140.07%
  • loopringLoopring(LRC)$0.172016-0.32%
  • mask-networkMask Network(MASK)$2.58-2.10%
  • DeFiChainDeFiChain(DFI)$0.281637-0.02%
  • SeiSei(SEI)$0.117270-1.13%
  • decredDecred(DCR)$13.49-0.83%
  • oasis-networkOasis Network(ROSE)$0.0414160.78%
  • Access ProtocolAccess Protocol(ACS)$0.002065-3.42%
  • heliumHelium(HNT)$1.43-1.99%
  • theta-fuelTheta Fuel(TFUEL)$0.032921-0.65%
  • zcashZcash(ZEC)$26.260.35%
  • Ankr Staked ETHAnkr Staked ETH(ANKRETH)$1,925.73-2.13%
  • aragonAragon(ANT)$5.042.69%
  • telosTelos(TLOS)$0.76-4.60%
  • justJUST(JST)$0.022285-0.20%
  • CoinmetroCoinmetro(XCM)$0.66506.72%
  • osmosisOsmosis(OSMO)$0.315605-0.72%
  • olympusOlympus(OHM)$11.350.08%
  • ankrAnkr Network(ANKR)$0.019164-2.02%
  • ethereum-name-serviceEthereum Name Service(ENS)$7.36-0.45%
  • Aleph ZeroAleph Zero(AZERO)$0.78-2.05%
  • SifchainSifchain(EROWAN)$0.154725-4.65%
  • FUBT TokenFUBT Token(FUC)$2.09-1.05%
  • BeldexBeldex(BDX)$0.032869-3.19%
  • BolideBolide(BLID)$0.029333-6.99%
  • stepnSTEPN(GMT)$0.153199-0.51%
  • holotokenHolo(HOT)$0.001026-0.36%
  • moonbeamMoonbeam(GLMR)$0.239350-2.64%
  • DEIDEI(DEI)$1.000.13%
  • Gains FarmGains Farm(GFARM2)$5,000.300.00%
  • 0x0x Protocol(ZRX)$0.2055660.64%