Welcome to Panoptic Research's online GitHub repository. Here you will find results of our studies on DeFi, on-chain options, and other related topics. We hope that these results will be useful to other researchers, developers, and operators in the field and contribute to the advancement of knowledge in DeFi.
If you have any questions or comments about the data or analysis presented here, please feel free to open an issue or contact us directly. Thank you for visiting and we hope you find our work insightful!
We run our Research Bites series and disseminate our findings via notebooks. You can get the notebooks from this repository.
They are located at: _research_bites/<date>/ResearchBites-<date>-<title>.ipynb
.
We provide tutorials as well to ensure the fullest participation from the community. Please locate those under _research_bites/tutorials/*.ipynb
.
Panoptic is a governance-minimized options trading protocol. It enables the permissionless trading of perpetual options on top of any asset pool in the Uniswap v3 ecosystem.
The Panoptic protocol is noncustodial, has no counterparty risk, offers instantaneous settlement, and is designed to remain fully-collateralized at all time.
- Panoptic's Website (includes link to documentation)
- Codebase on GitHub
- Discord
- Blog
Panoptic has been presented at conferences and was created before the Summer of 2021 with the first blog post/article coming out mid-summer 2021:
- Panoptic @ ETH Denver 2022
- Panoptic @ DeFi Guild
- Panoptic's Genesis: Blog Series
- Panoptic's Whitepaper v1
After introducing Panoptic and providing context, it is time to provide Panoptic's take-home test for evaluating Solidity engineers:
We use a Python virtual environment to manage packages. Activate it with:
> ./activate.sh
Make sure that the environment panoptic-research
is used by checking the path to the Python executable being used:
> which python
<your base path - varies between computers>/research/panoptic-research/bin/python
We see the path makes sense - it is the panoptic-research/bin/python
file.
This also means that you can run any python file with:
> python <filename>.py
Then install all existing Python packages with:
> panoptic-research/bin/pip install -r requirements.txt
Install the HelveticaNeue fonts with:
panoptic-research/bin/python3.10 installFonts.py
Install new packages with:
panoptic-research/bin/pip install <pip package to install>
After installing new packages - and assuming you want to keep them - please update the requirements file:
> panoptic-research/bin/pip freeze > requirements.txt
and push as part of your PR.
Download data by using the DataHandler
:
> from research import DataHandler
> dh = DataHandler()
> df = dh.download(pool_address="0x82c427adfdf2d245ec51d8046b41c4ee87f0d29c", all=True, force=False)
To run code, e.g., to sync data:
> python syncData.py
Axicon Labs Inc.
Created by Axicon Labs Inc.
This repository "https://github.com/panoptic-labs/research" (the "Repo") is licensed under the MIT license. You are free to use, build upon, and distribute this Repo.