Last active
June 11, 2025 23:33
-
-
Save Edoumou/4f6492727a71b0fb941f131febca1f21 to your computer and use it in GitHub Desktop.
PFF - Protocols
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Router } from 'express'; | |
const router = Router(); | |
// PFF Token Routes | |
router.post('/pff-token/deploy', (req, res) => {}); | |
// PFF Futures Routes | |
router.post('/pff-futures/deploy', (req, res) => {}); | |
router.get('/pff-futures/market', (req, res) => {}); | |
router.post('/pff-futures/list', (req, res) => {}); | |
router.post('/pff-futures/unlist', (req, res) => {}); | |
router.post('/pff-futures/withdraw', (req, res) => {}); | |
router.get('/pff-futures/listed', (req, res) => {}); | |
router.post('/platform/register', (req, res) => {}); | |
router.post('/platform/contact', (req, res) => {}); | |
router.get('/protocols/metrics', (req, res) => {}); | |
router.get('/market/metrics', (req, res) => {}); | |
// PFF Redeem Routes | |
router.post('/pff-redeem/deploy', (req, res) => {}); | |
export default router; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment