Bitcoin Forum

Alternate cryptocurrencies => Service Discussion (Altcoins) => Topic started by: hirenshukla2017 on June 21, 2022, 01:27:29 PM



Title: How to start your own decentralized exchange like Uniswap ??
Post by: hirenshukla2017 on June 21, 2022, 01:27:29 PM
Has anybody have experienced in developing decentralize exchange with minimum effort??
Like white lable or some short of partnership.
To earn some passive income from swap commission.

Do anyone have idea about it??


Title: Re: How to start your own decentralized exchange like Uniswap ??
Post by: edgycorner on June 21, 2022, 06:06:06 PM
I have no personal experience in building a "Dex", but it can be easily done if you know solidity and basic programming.

You can use Uniswap's factory (https://etherscan.io/address/0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f#code) and router (https://etherscan.io/address/0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D#code) contract code.

You can even use uniswap's front end
https://github.com/Uniswap/interface

You got everything you need for free  ;D

Follow this guide to know how Uniswap contracts work https://cryptomarketpool.com/how-do-the-uniswap-solidity-smart-contracts-work/

Make sure to test everything out on a testchain first.
Good luck!