dspytdao / Algo_AMM

The application allows you to trade on the outcomes of events, and follow the odds to garner accurate insights about the future. Users buy or sell Voting Shares, which can be redeemed for 1 unit of the stable asset if the outcome is resolved as correct, and become worthless if it’s incorrect.

Home Page:https://algoamm.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Automated Prediction Market Maker on Algorand

NOTE: This code is not audited and should not be used in production environment.

Summary

Algo AMM is an automated prediction market maker on Algorand that allows users to trade on the outcomes of events, and follow the odds to garner accurate insights about the future.

Our target market is traders, speculators and investors who are interested in taking advantage of the predictive power of markets. The user problem we are addressing is the difficulty in predicting outcomes of events accurately and reliably. Our solution is an automated prediction market maker that allows users to trade on the outcomes of events, and follow the odds to garner accurate insights about the future. We provide liquidity for users to buy or sell Voting Shares, which can be redeemed for 1 unit of the stable asset if the outcome is resolved as correct, and become worthless if it’s incorrect.

The goal is, by harnessing the power of free markets to aggregate collective knowledge and provide the general public with an unbiased source of truth in regards to the likelihood of certain significant events happening in the future.

Automated Market Maker

Project Slides Deck

Technical Stack

We wrote contract for Algo AMM with the help of PyTeal and Py-algorand-sdk.

The front end

react and vite front-end

react and nextjs front-end

Algo AMM Live

Founders

Pavel Fedotov: LinkedIn Twitter GitHub

Grigore Gabriel Trifan: LinkedIn Twitter GitHub

Overview

Constant Function Automated Market Maker (CFAMM) contract provides configuration options and creates a market for an event that has a binary outcome.

Liquidity Pool provides a foundation for users to purchase and redeem spawned tokens once the event has been resolved. The Liquidity Pool supports a constant reserve ratio for stable price discovery and protection from liquidity drain. The liquidity provided allows to spawn two tokens in equal amount in 25%/25% proportion of the liquidity supplied.

The purchase price for each token is determined by equation: x + y = k. Where x is the amount of A tokens in the AMM, y is the amount of B tokens in the AMM.

Once the event has occurred the price for one token should resolve to 1, while 0 for another.

Liquidity Shares and Voting Shares can only be released after the creator of the contract moderated the outcome.

As a prediction market maker on Algorand, our primary role would be to provide liquidity to users who are looking to buy and sell prediction market tokens on the platform. This involves creating markets for events or outcomes, such as the winner of a political election or the outcome of a sports game, and setting prices for these tokens based on supply and demand.

Requirements

  1. Vscode or another IDE
  2. Python 3
  3. PIP Package Manager
  4. Py-algorand-sdk
  5. PyTEAL
  6. Algorand Purestake node api key

PyTeal Algo AMM Smart Contract

PyTeal contracts are written in Python using any editor of your choice. compileProgram method produces the TEAL code which is then compiled into bytecode and deployed to the blockchain.

The PyTeal smart contract consists of two programs. These are called the approval program and the clear programs. In PyTeal both of these programs are generally created in the same Python file.

The approval_program is responsible for processing all application calls to the contract, with the exception of the clear call. The program is responsible for implementing most of the logic of an application.

The clear_program is used to handle accounts using the clear call to remove the smart contract from their balance record.

In amm.py we keep the high-level logic of the contract, helpers.py contains lower level methods and config.py keeps track of global variable and key configuration variables.

Useful Resources

PyTEAL

Testnet Dispensary

Algorand Dispenser

Py-algorand-sdk

AlgoExplorer

Algorand: Build with Python

Algorand: Smart contract details

Amm Demo contract

Creating Stateful Algorand Smart Contracts in Python with PyTeal

How to publish PIP package

Algorand Ecosystem Algo AMM page

How To Use unittest to Write a Test Case for a Function in Python

More Information about Dspyt

Dspyt Homepage

Dspyt GitHub DAO Page

About

The application allows you to trade on the outcomes of events, and follow the odds to garner accurate insights about the future. Users buy or sell Voting Shares, which can be redeemed for 1 unit of the stable asset if the outcome is resolved as correct, and become worthless if it’s incorrect.

https://algoamm.com/

License:MIT License


Languages

Language:Python 100.0%