Friday, March 24, 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 Metaverse Web 3.0

Build a Uniswap DEX Clone With HTML, CSS, JavaScript & Moralis on the Ethereum Network » Moralis » The Ultimate Web3 Development Platform

by ethozedge
April 27, 2022
in Web 3.0
Reading Time: 10 mins read
A A
0
Share on FacebookShare on Twitter


Creating a DEX has been quite difficult in the past. Why? Because it has required considerable backend development, which is both resource-intensive and time-consuming. In terms of performance and user experience, most DEXs could be better.

However, by using Moralis, you can skip most of this since the platform already has a capable backend infrastructure. As a result, all blockchain projects can reduce their development time drastically. Furthermore, Moralis gives you access to a long list of excellent development tools for creating and deploying dapps. These technologies are helpful for all Web3 development projects, not just DEX creation.

This tutorial will teach you how to build a Uniswap DEX clone with HTML, CSS, JavaScript, and Moralis on the Ethereum network.

Table of Contents

  • What is a DEX (decentralized exchange)?
  • What is Moralis?
  • Project Setup and Installation
  • Moralis Server Setup
  • Installing the 1inch DEX Plugin
  • Building a Uniswap DEX
  • Conclusion

Here is a link to the live demo and the GitHub repositories – Uniswap DEX with Moralis.

What is a DEX (Decentralized Exchange)?

A decentralized exchange, or DEX, is a peer-to-peer marketplace where cryptocurrency traders can transact directly with one another. DEXs enable financial transactions to execute without being mediated by banks, brokers, payment processors, or any other type of intermediary.

Smart contracts and order book relaying are two prominent means of functioning, although many additional options and degrees of decentralization are available.

Decentralized exchanges lessen the danger of theft from exchange hacking by removing the necessity for traders to send their assets to the exchange before completing a trade. Still, liquidity providers must transfer tokens to the decentralized exchange.

DEXs often replace traditional exchange order books, which match buyers and sellers based on order prices and volume, with “liquidity pools.” These are pots of cryptocurrency assets that sit beneath the exchange’s surface, waiting to clear any buy or sell orders. The investments in the pool come from investors who deposit money to profit from transaction fees charged to pooling users.

What is Moralis?

Moralis is a service that brings together a variety of tools and resources for building decentralized software that connects to the blockchain, such as Ethereum, Polygon, and Binance Smart Chain (now BNB Smart Chain).

Moralis’ ultimate Web3 development platform, which includes built-in cross-chain capability, allows novice and experienced developers to work quickly and easily. Furthermore, Moralis provides you with a Web3 backend infrastructure that lets you concentrate on frontend development. It essentially takes care of all the complicated, behind-the-scenes Web3 things required to make your dapps operate. 

Moralis is also controlled and infinitely scalable, so your dapps will scale without difficulty.

Project Setup and Installation

To quickly get started with the project setup and installation, we will clone this project on GitHub and ensure that we are on the setup branch. Next, we will launch the project locally after cloning it.

Moralis Server Setup

Let’s start by setting up our Moralis server, as we’ll use it to develop the Uniswap DEX in the next section. We’ll set up a server on our Moralis admin panel. Register one here if you don’t already have an account. Signing up is easy, and you can get started for free.

We will click on the create a new server as shown below, then select the mainnet server on our admin panel:

We will now enter our server details as shown below:

Create Web3 Server

Our server will be ready in a few seconds, and we will have to access our server URL and application ID from the freshly created server instance on our Moralis admin panel.  

We will use these details to connect to the server instance from our application, as shown below:

Uniswap DEX Clone Server

Installing the 1inch DEX Plugin

In this section, we will be adding the 1inch DEX plugin to the server. We’ll need to visit the Moralis plugin store, which we can find by clicking on the Plugins button on the server and then clicking on Go to Plugin Store.

The site will redirect us to the Moralis plugin store, where we can install the 1inch plugin, which integrates the DeFi / DEX aggregator 1inch to any project that uses Moralis.

Moralis Plugins

Building a Uniswap DEX

We’ll proceed to initialize Moralis after completing our setup and user interface (UI).

We’ll need to get the server URL and application ID from the previously created server. By selecting the View Details button of our server, we’ll be able to obtain this information. Then, in the script.js file, we can copy and paste this information into our application:

See the Pen Create Uniswap DEX Clone 1 by Moralis Web3 (@moralisweb3) on CodePen.

We’ll add four global variables after Moralis has been set up. The first variable is for the current user, the second is for the trade item, the third is for the selection, and the fourth is for the tokens:

See the Pen Create Uniswap DEX Clone 2 by Moralis Web3 (@moralisweb3) on CodePen.

We’ll add user login capabilities shortly, but first, we’ll create an initialize function that runs when our app starts with the code snippet below:

See the Pen Create Uniswap DEX Clone 3 by Moralis Web3 (@moralisweb3) on CodePen.

Login Implementation

Let us update the script.js file with the following code snippet:

See the Pen Create Uniswap DEX Clone 4 by Moralis Web3 (@moralisweb3) on CodePen.

In the code snippet above, we validate if a user is logged in using the Moralis API and then update the text for the two buttons in our application to Connected and Swap: 

Token Implementation

We will implement a function called availableTokens to get all supported tokens on the chain and then add them to our drop-down list that is currently empty.

We do this with the following code snippet:

See the Pen Create Uniswap DEX Clone 5 by Moralis Web3 (@moralisweb3) on CodePen.

Inside the initialize function, we will call the availableTokens function to get all the supported tokens:

See the Pen Create Uniswap DEX Clone 6 by Moralis Web3 (@moralisweb3) on CodePen.

We should have all the supported tokens populated inside our drop-down list as shown below:

Search Implementation

Instead of scrolling through the extensive token list, we’ll use the token search capability in our dropdown to look for a specific token using the following code snippet:

See the Pen Create Uniswap DEX Clone 7 by Moralis Web3 (@moralisweb3) on CodePen.

Let us update the index.html file to reflect the search functionality changes by adding the onkeyup attribute to the input tag:

See the Pen Create Uniswap DEX Clone 8 by Moralis Web3 (@moralisweb3) on CodePen.

Our search functionality now works as shown below:

Render Selected Token Implementation

We will implement the rendering of a selected token in this section. At the moment, we cannot select a token from the list.
Thus, let’s update the script.js with the following code snippet:

See the Pen Create Uniswap DEX Clone 8 by Moralis Web3 (@moralisweb3) on CodePen.

Once the user selects a token, the code snippet above renders the token’s image and symbol. Depending on whatever element the user interacts with, it does this for both the from-token-selected and to-token-selected details:

Get Token Quotation and Display Amount

We’ll implement the getQuotation function in this section. This function retrieves the token’s current price and displays the amount the user will earn if they proceed with a trade.

We can achieve this with the following code snippet:

See the Pen Create Uniswap DEX Clone 10 by Moralis Web3 (@moralisweb3) on CodePen.

Next, we will call the getQuotation function when a token is selected. Let us update the selectToken function with the following code snippet:

See the Pen Create Uniswap DEX Clone 12 by Moralis Web3 (@moralisweb3) on CodePen.

Upon selection, it will fetch and display the current price, estimated gas fee, and the amount the user will earn for the selected token, as shown below:

Swap Implementation

We’ll create two different functions to send tokens: validateSwap and Swap.

For the swap to occur, the Moralis 1inch plugin must be allowed for the smart contracts. As a result, before calling the Swap function, the validateSwap function checks if the user has provided an allowance:

See the Pen Create Uniswap DEX Clone 12 by Moralis Web3 (@moralisweb3) on CodePen.

Next, we will implement the onCllick functionality for the swap with the code snippet below:

See the Pen Create Uniswap DEX Clone 13 by Moralis Web3 (@moralisweb3) on CodePen.

Voila partying face We have now successfully built the Uniswap DEX clone application. As such, let’s test our application:

Conclusion

This tutorial shows how to build a decentralized application using the ultimate Web3 development platform and the most advanced Web3 API – Moralis – to build a Uniswap DEX clone dapp. Using Moralis, you can build a wide variety of different Web3 dapps. Sign up with Moralis today to start building your own Web3 project! 





Source link

Tags: bitcoin newsBuildClonecrypto analysiscrypto newsCSSDevelopmentDexEthereumEthoz EdgeHTMLJavaScriptLatest bitcoin newslatest crypto newsMoralisnetworkPlatformUltimateUniswapWeb3
Share76Tweet47

Related Posts

Hong Kong poised for ambitious changes

by ethozedge
March 23, 2023
0

Welcome to Future Rules, March 23, 2023 – presented by Joel Flynn.2023 is shaping up to be a year of...

How to Get a Wallet Balance on Aptos

by ethozedge
March 22, 2023
0

https://www.youtube.com/watch?v=dt8e7CSrsioExplore the easiest way to get a wallet balance on Aptos with the Web3 Data API from Moralis. With this...

Get Crypto Data Using a Python API for Cryptocurrency

by ethozedge
March 21, 2023
0

https://www.youtube.com/watch?v=54IKIiopgKQThis tutorial will teach you to use the Python-compatible Web3 Data API from Moralis to pull cryptocurrency prices, transactions, balances,...

Over 80 Web3 firms in line to set up shop in HK, ahead of crypto regulations taking effect in June

by ethozedge
March 20, 2023
0

Over 80 foreign and Mainland China companies have expressed their interest in establishing a Web3 company in Hong Kong, ahead...

How to Get an Address’ Token Balance on Solana

by ethozedge
March 20, 2023
0

https://www.youtube.com/watch?v=A31n28GjwHEWhen you use next-gen Web3 tools, you can effortlessly implement essential features into your Solana dapps. For example, thanks to...

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

Coinbase’s Brian Armstrong criticizes US crypto regulation, SEC behavior in Twitter Space

March 23, 2023

Australian Crypto Exchange Considering Setting Up Hong Kong

March 23, 2023

Florida school principal fired for showing students Michelangelo’s ‘pornographic’ David sculpture

March 23, 2023

Solana (SOL) and Avorak AI (AVRK)

March 23, 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)$28,513.003.61%
  • ethereumEthereum(ETH)$1,827.864.36%
  • USDEXUSDEX(USDEX)$1.07-0.47%
  • tetherTether(USDT)$1.01-0.01%
  • binancecoinBNB(BNB)$331.582.50%
  • usd-coinUSD Coin(USDC)$1.000.03%
  • rippleXRP(XRP)$0.4466884.80%
  • cardanoCardano(ADA)$0.3746872.87%
  • dogecoinDogecoin(DOGE)$0.0778304.08%
  • staked-etherLido Staked Ether(STETH)$1,819.934.21%
  • matic-networkPolygon(MATIC)$1.142.19%
  • solanaSolana(SOL)$22.343.34%
  • binance-usdBinance USD(BUSD)$1.01-0.05%
  • polkadotPolkadot(DOT)$6.364.08%
  • litecoinLitecoin(LTC)$93.725.97%
  • shiba-inuShiba Inu(SHIB)$0.0000111.93%
  • tronTRON(TRX)$0.0658269.17%
  • avalanche-2Avalanche(AVAX)$17.684.45%
  • daiDai(DAI)$1.000.09%
  • uniswapUniswap(UNI)$6.282.43%
  • wrapped-bitcoinWrapped Bitcoin(WBTC)$28,554.003.65%
  • chainlinkChainlink(LINK)$7.696.47%
  • cosmosCosmos Hub(ATOM)$11.762.98%
  • ToncoinToncoin(TON)$2.19-8.30%
  • leo-tokenLEO Token(LEO)$3.400.90%
  • ethereum-classicEthereum Classic(ETC)$20.942.98%
  • moneroMonero(XMR)$157.874.64%
  • okbOKB(OKB)$45.22-0.53%
  • bitcoin-cashBitcoin Cash(BCH)$129.251.96%
  • Aerarium FiAerarium Fi(AERA)$7.15-13.10%
  • stellarStellar(XLM)$0.0931682.08%
  • filecoinFilecoin(FIL)$5.954.28%
  • AptosAptos(APT)$13.240.79%
  • true-usdTrueUSD(TUSD)$1.01-0.05%
  • lido-daoLido DAO(LDO)$2.32-3.67%
  • hedera-hashgraphHedera(HBAR)$0.0628642.88%
  • quant-networkQuant(QNT)$127.831.76%
  • nearNEAR Protocol(NEAR)$2.064.67%
  • crypto-com-chainCronos(CRO)$0.0704712.17%
  • vechainVeChain(VET)$0.0238634.71%
  • ArbitrumArbitrum(ARB)$1.37-72.91%
  • blockstackStacks(STX)$1.17-2.78%
  • algorandAlgorand(ALGO)$0.2212802.37%
  • internet-computerInternet Computer(ICP)$5.232.47%
  • apecoinApeCoin(APE)$4.183.53%
  • fantomFantom(FTM)$0.4976434.72%
  • the-graphThe Graph(GRT)$0.1531565.96%
  • eosEOS(EOS)$1.175.67%
  • the-sandboxThe Sandbox(SAND)$0.674.01%
  • decentralandDecentraland(MANA)$0.624.68%
  • aaveAave(AAVE)$77.552.46%
  • immutable-xImmutableX(IMX)$1.210.88%
  • elrond-erd-2MultiversX(EGLD)$43.933.84%
  • tezosTezos(XTZ)$1.183.70%
  • flowFlow(FLOW)$1.032.87%
  • theta-tokenTheta Network(THETA)$1.065.37%
  • fraxFrax(FRAX)$1.000.00%
  • axie-infinityAxie Infinity(AXS)$8.733.47%
  • neoNEO(NEO)$12.936.40%
  • kucoin-sharesKuCoin(KCS)$9.101.12%
  • havvenSynthetix Network(SNX)$2.720.14%
  • conflux-tokenConflux(CFX)$0.378296-2.26%
  • optimismOptimism(OP)$2.49-2.52%
  • rocket-poolRocket Pool(RPL)$40.334.13%
  • mina-protocolMina Protocol(MINA)$0.888.14%
  • BitDAOBitDAO(BIT)$0.531.04%
  • gatechain-tokenGate(GT)$5.413.52%
  • paxos-standardPax Dollar(USDP)$1.01-0.33%
  • curve-dao-tokenCurve DAO(CRV)$0.972.25%
  • terra-lunaTerra Luna Classic(LUNC)$0.0001271.00%
  • bitcoin-cash-svBitcoin SV(BSV)$37.714.49%
  • klay-tokenKlaytn(KLAY)$0.2350283.67%
  • usddUSDD(USDD)$1.00-0.02%
  • dashDash(DASH)$63.877.79%
  • WhiteBIT TokenWhiteBIT Token(WBT)$4.953.13%
  • pancakeswap-tokenPancakeSwap(CAKE)$3.791.42%
  • chilizChiliz(CHZ)$0.1232402.98%
  • gmxGMX(GMX)$75.37-3.76%
  • sapphireSapphire(SAPP)$0.7035.32%
  • ecasheCash(XEC)$0.0000324.39%
  • CloutContractsCloutContracts(CCS)$52.461,000.00%
  • makerMaker(MKR)$687.051.27%
  • frax-shareFrax Share(FXS)$8.232.25%
  • iotaIOTA(MIOTA)$0.2184563.69%
  • bittorrentBitTorrent(BTT)$0.0000012.58%
  • singularitynetSingularityNET(AGIX)$0.491687-2.25%
  • huobi-tokenHuobi(HT)$3.651.42%
  • compound-ethercETH(CETH)$36.634.39%
  • Bitget TokenBitget Token(BGB)$0.3967371.01%
  • xdce-crowd-saleXDC Network(XDC)$0.038049-3.19%
  • EdgecoinEdgecoin(EDGT)$1.010.16%
  • Tokenize XchangeTokenize Xchange(TKX)$6.513.26%
  • pax-goldPAX Gold(PAXG)$2,000.550.74%
  • trust-wallet-tokenTrust Wallet(TWT)$1.211.16%
  • tether-goldTether Gold(XAUT)$2,003.712.05%
  • render-tokenRender(RNDR)$1.35-3.73%
  • mask-networkMask Network(MASK)$6.4019.55%
  • zilliqaZilliqa(ZIL)$0.0286534.03%
  • radixRadix(XRD)$0.04578515.50%
  • binaryxBinaryX(BNX)$165.94-5.94%
  • loopringLoopring(LRC)$0.3696339.35%
  • compound-usd-coincUSDC(CUSDC)$0.022861-0.12%
  • osmosisOsmosis(OSMO)$0.822.12%
  • Halo CoinHalo Coin(HALO)$0.057352-0.04%
  • 1inch1inch(1INCH)$0.522.00%
  • thorchainTHORChain(RUNE)$1.455.25%
  • arweaveArweave(AR)$8.631.23%
  • Rocket Pool ETHRocket Pool ETH(RETH)$1,955.314.30%
  • zcashZcash(ZEC)$38.579.94%
  • oec-tokenOKC Token(OKT)$23.294.44%
  • convex-financeConvex Finance(CVX)$5.431.44%
  • fetch-aiFetch.ai(FET)$0.3901761.22%
  • enjincoinEnjin Coin(ENJ)$0.4040533.82%
  • casper-networkCasper Network(CSPR)$0.0371561.31%
  • kavaKava(KAVA)$0.890.34%
  • dydxdYdX(DYDX)$2.633.64%
  • nexoNEXO(NEXO)$0.725.57%
  • gemini-dollarGemini Dollar(GUSD)$1.00-0.30%
  • btse-tokenBTSE Token(BTSE)$2.411.61%
  • DeFiChainDeFiChain(DFI)$0.573.02%
  • EthereumPoWEthereumPoW(ETHW)$3.606.44%
  • FlareFlare(FLR)$0.0320881.81%
  • basic-attention-tokenBasic Attention(BAT)$0.2556125.77%
  • FLOKIFLOKI(FLOKI)$0.0000383.57%
  • cdaicDAI(CDAI)$0.022221-0.12%
  • nemNEM(XEM)$0.0409795.31%
  • ethereum-name-serviceEthereum Name Service(ENS)$14.042.40%
  • DogechainDogechain(DC)$0.001787-24.98%
  • WEMIXWEMIX(WEMIX)$1.440.50%
  • MagicMagic(MAGIC)$1.66-8.41%
  • Nexus MutualNexus Mutual(NXM)$52.173.90%
  • qtumQtum(QTUM)$3.347.17%
  • woo-networkWOO Network(WOO)$0.2075583.36%
  • holotokenHolo(HOT)$0.0019366.41%
  • injective-protocolInjective(INJ)$4.240.96%
  • Aleph ZeroAleph Zero(AZERO)$1.541.01%
  • theta-fuelTheta Fuel(TFUEL)$0.0553594.36%
  • baby-doge-coinBaby Doge Coin(BABYDOGE)$0.000000-2.33%
  • decredDecred(DCR)$22.1113.92%
  • terra-luna-2Terra(LUNA)$1.37-0.95%
  • ravencoinRavencoin(RVN)$0.0270263.05%
  • galaGALA(GALA)$0.0426354.09%
  • kusamaKusama(KSM)$35.386.09%
  • celoCelo(CELO)$0.632.40%
  • bitcoin-goldBitcoin Gold(BTG)$17.334.98%
  • compound-governance-tokenCompound(COMP)$44.363.16%
  • oasis-networkOasis Network(ROSE)$0.0597983.84%
  • KaspaKaspa(KAS)$0.0169715.63%
  • bloxBlox(CDT)$0.43524515.25%
  • gnosisGnosis(GNO)$113.093.90%
  • Gains FarmGains Farm(GFARM2)$8,150.470.05%
  • AstarAstar(ASTR)$0.0662963.20%
  • olympusOlympus(OHM)$10.360.94%
  • yearn-financeyearn.finance(YFI)$8,729.142.67%
  • ankrAnkr Network(ANKR)$0.0351444.83%
  • Access ProtocolAccess Protocol(ACS)$0.0096790.92%
  • balancerBalancer(BAL)$7.117.78%
  • BeldexBeldex(BDX)$0.054479-1.57%
  • audiusAudius(AUDIO)$0.2850191.11%
  • linkLINK(LN)$42.125.02%
  • safemoonSafeMoon [OLD](SAFEMOON)$0.0000002.67%
  • harmonyHarmony(ONE)$0.0220757.16%
  • nucypherNuCypher(NU)$0.2076820.65%
  • liquity-usdLiquity USD(LUSD)$1.020.33%
  • chiaChia(XCH)$38.560.40%
  • Bone ShibaSwapBone ShibaSwap(BONE)$1.140.78%
  • stepnSTEPN(GMT)$0.4130134.82%
  • SSV NetworkSSV Network(SSV)$36.41-0.46%
  • IdeaChainIdeaChain(ICH)$4.730.00%
  • ftx-tokenFTX(FTT)$1.89-21.52%
  • huobi-btcHuobi BTC(HBTC)$28,433.003.52%
  • Gains NetworkGains Network(GNS)$8.316.35%
  • omisegoOMG Network(OMG)$1.801.14%
  • convex-crvConvex CRV(CVXCRV)$0.864.52%
  • Crypto Gladiator LeagueCrypto Gladiator League(CGL)$0.16194440.57%
  • AstraferAstrafer(ASTRAFER)$1.602.19%
  • BlurBlur(BLUR)$0.59-0.58%
  • golemGolem(GLM)$0.2444100.82%
  • iotexIoTeX(IOTX)$0.0257554.43%
  • moonbeamMoonbeam(GLMR)$0.3948153.26%
  • justJUST(JST)$0.0266294.77%
  • jasmycoinJasmyCoin(JASMY)$0.0049264.19%
  • DAO MakerDAO Maker(DAO)$1.575.76%
  • Manchester City Fan TokenManchester City Fan Token(CITY)$11.87-1.78%
  • world-mobile-tokenWorld Mobile Token(WMT)$0.2920233.33%
  • escoin-tokenEscoin(ELG)$2.860.87%
  • kadenaKadena(KDA)$1.021.54%
  • amp-tokenAmp(AMP)$0.0040634.66%
  • Frax EtherFrax Ether(FRXETH)$1,826.704.30%
  • Meerkat SharesMeerkat Shares(MSHARE)$11,715.17-5.03%
  • wavesWaves(WAVES)$2.260.61%
  • nervos-networkNervos Network(CKB)$0.00673010.54%
  • tether-eurtEuro Tether(EURT)$1.090.45%
  • ecomiECOMI(OMI)$0.000824-2.50%
  • Staked LunaStaked Luna(STLUNA)$88.35-0.49%
  • band-protocolBand Protocol(BAND)$1.755.12%
  • siacoinSiacoin(SC)$0.0041453.72%
  • LiquityLiquity(LQTY)$2.313.86%
  • terrausdTerraClassicUSD(USTC)$0.0215040.40%