An open API service indexing awesome lists of open source software.

https://github.com/TacitusXI/zkSync-AMM-contract

ZK-rollups use ZKPs by combining a large number of Layer 2 transactions (off-chain) into one transaction that then gets mined on the Ethereum mainnet. Instead of mining 100s of transactions individually, they can be rolled up into a single transaction.
https://github.com/TacitusXI/zkSync-AMM-contract

amm blockchain constant-product dapp defi dex ethereum layer2 layer2-dapp rollup smart-contracts solidity unis zk-snarks zksync

Last synced: 11 months ago
JSON representation

ZK-rollups use ZKPs by combining a large number of Layer 2 transactions (off-chain) into one transaction that then gets mined on the Ethereum mainnet. Instead of mining 100s of transactions individually, they can be rolled up into a single transaction.

Awesome Lists containing this project

README

          

# πŸ—žοΈ Constant Product Automated Market Maker (AMM) Contract build on zkSync ZK rollup layer2 solution πŸ—žοΈ
> There are 3 contracts: token0.sol and token1.sol are erc20 tokens and CPAMM is AMM contract to swap these two tokens. Instructions how to deploy and verify contracts on zkSync explorer below

## πŸ“ Table of Contents
* [General Info](#-general-information)
* [Technologies Used](#-technologies-used)
* [Features](#-features)
* [Requirements For Initial Setup](#-requirements-for-initial-setup)
* [Setup](#-setup)

## 🚩 General Information
- Contract allows users to set and get greeting message on zkSync network


## πŸ’» Technologies Used
- zksync-web3 library
- layer2 zk rollup

## 🌟 Features
ZK-Rollup has absolute dominance in user experience, which can be concretely expressed as a :
- high level of security,
- fast
- economic transactions.

## πŸ‘€ Requirements For Initial Setup
- Install [yarn](https://classic.yarnpkg.com/lang/en/docs/install)
- Install [Docker](https://www.docker.com/products/docker-desktop/)

## πŸ“Ÿ Setup
### 1. πŸ’Ύ Clone/Download the Repository
### 2. πŸ“¦ Install Dependencies:
```
$ cd repository_file
$ yarn
```
### 3. πŸ” .env environment variables required to set up
Create .env file inside project folder

- You can get your private key from your wallet(⚠️Don't share your private key with untrusted parties)
```
PRIVATE_KEY =
```

### 4. πŸ“ Run Compile
```
$ yarn hardhat compile
```

### 5. πŸš€ Deploy to zkSync ( ⚠️ Make sure to have ETH on your wallet in GOERLI testnet ⚠️)
```
$ yarn hardhat deploy-zksync
```

### 7. πŸ“œ Verify contracts
- πŸ”Ž Go to [zkScan](https://zksync2-testnet.zkscan.io/#) explorer and find your deployed contract.
- β˜‘οΈ Go to "Π‘ode" tab and click "Verify & Publish":
![Example screenshot](./helpers/zkScan.png)
- πŸ€” Choose how you want to verify: Via flattened source code || Via Standard Input JSON.
- βœ… Enter the required data and you have successfully verified your contract.