As oyster swap is a dated project, I do not recommend you deploy it on the Solana Mainnet due to security reasons. If you still want to deploy it on the Mainnet, here are some changes you may need to do: Many NFT projects launched on Solana last year. It seems that the Solana Mainnet…
Category: Solana
Deploy your own decentralized exchange on Solana [7: Deploy your exchange into the Cloudflare page]
Based on the cloned oyster swap project, we created our decentralized exchange in the previous article. This article will teach you how to deploy your exchange into the Cloudflare page. Step 1: On your code editor’s terminal, execute the command below. Step 2: Create a Cloudflare account if you don’t have one. After that,…
Deploy your own decentralized exchange on Solana [6: changing the name of your token]
In the previous article, we created our liquidity pool. However, the token name is still a random number and is difficult to remember In this article, we will learn how to change its name on our exchange and update it on the Solana lab GitHub. Step 1: To change the token name on our…
Deploy your own decentralized exchange on Solana [5: create your own liquidity pool on solana]
In the previous article, we successfully built our decentralizsed exchange on Solana. In this article, we will create our liquidity pool using our own exchange. Step 1: Go to the Pool page of our exchange. Step 2: Enter the amount of SOL and the token you want to add to the liquidity pool. I…
Deploy your own decentralized exchange on Solana [4: create our own decentralised exchange based on the cloned oyster swap project]
In the previous article, we imported the wallet created from the Solana tool suite to Sollet. Finally, we are ready to build our decentralized exchange based on the cloned oyster swap project. Before we start, you will need to install a code editor with npm, such as Visual Studio Code and Atom. Step 1:…
Deploy your own decentralized exchange on Solana [3: import your wallet to Sollet]
We have created our token on Solana in the previous article. However, since the oyster swap does not support phantom wallets, we will need to use Sollet or Solflare to perform a transaction. Therefore, this article will teach you how to import your wallet to Sollet. Step 1: Go to Sollet and click “Restore…
Deploy your own decentralized exchange on Solana [2: create your own token on solana]
In the previous article, we created our wallet and obtained some SOL for testing on the Devnet using the Solana tool suite. In this article, we are going to develop our token. Step 1: Using the same command prompt from the previous article, create our token with the command below spl-token create-token
Deploy your own decentralized exchange on Solana [1: create a crypto wallet]
In this series, we will build our decentralized exchange on Solana. There is some similar guide on the Internet, but I found they are somehow dated. I have modified their code and built the project at least twice to ensure they are functional now (Oct 2022). At the end of this series, we will…